@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Tilt+Warp&display=swap);
body {
  background-color: #3b3b3b;
}
body h1 {
  width: 100%;
  text-align: center;
  color: #000;
  font-family: Poppins, sans-serif;
  margin-bottom: 3%;
}
body h3 {
  color: #000;
  font-family: Poppins, sans-serif;
  margin-bottom: 2%;
  font-weight: 300;
}
body h4 {
  color: #8c5587;
  font-family: Poppins, sans-serif;
}
table {
  width: 100%;
}
body p {
  color: #000;
  font-size: 1vw;
  font-family: Poppins, sans-serif;
  margin-top: 1%;
}
.code-snippet pre {
  margin-bottom: 0;
}
@media only screen and (max-width: 600px) {
  body h1 {
    width: 100%;
    text-align: center;
    color: #000;
    font-family: Poppins, sans-serif;
    margin-bottom: 3%;
    font-size: 6vw;
  }
  body h3 {
    color: #000;
    font-family: Poppins, sans-serif;
    margin-bottom: 2%;
    font-weight: 300;
    font-size: 4vw;
  }
  body h4 {
    color: #000;
    font-family: Poppins, sans-serif;
    font-size: 3vw;
  }
  body p {
    color: #000;
    font-size: 1vw;
    font-family: Poppins, sans-serif;
    margin-bottom: 3%;
    font-size: 3vw;
  }
}
.hljs-keyword {
  color: #ff6262;
}
.hljs-variable {
  color: #9e9eff;
}
.hljs-type {
  color: #8fb68f;
}
.course-intro .row .col-md .code-snippet {
  background-color: #3b3b3b;
  border-radius: 5px;
  color: #fff;
  width: 100%;
}
.code-snippet {
  background-color: #3b3b3b;
  border-radius: 5px;
  color: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5% 1%;
}
.code-language {
  font-size: 1vw;
  font-weight: 700;
  padding: 0 1%;
}
.code-copy-btn {
  background-color: #47614800;
  border: none;
  color: #fff;
  padding: 0.5% 2%;
  font-size: 0.8vw;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media only screen and (max-width: 600px) {
  .code-header {
    height: 6vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .code-language {
    font-size: 4vw;
    padding: 3% 4%;
  }
  .code-copy-btn {
    font-size: 3vw;
  }
}
.course-intro .row .col-md .code-body {
  background-color: #000;
  border-radius: 5px;
  padding-left: 3%;
  width: 100%;
  height: 100%;
}
.code-body {
  background-color: #000;
  border-radius: 5px;
  padding: 0 5%;
}
.course-intro .row .col-md .code-body code {
  font-size: 1vw;
}
.code-body code {
  color: #fff;
  font-size: 1vw;
  font-family: monospace;
  padding: 1% 0;
}
@media only screen and (max-width: 600px) {
  .course-intro .row .col-md .code-body code {
    font-size: 4vw;
  }
  .course-intro .row .col-md .code-body pre {
    padding: 0 30%;
  }
  .course-intro .row .col-md .code-snippet {
    background-color: #3b3b3b;
    border-radius: 5px;
    color: #fff;
    width: 100%;
  }
  .code-snippet {
    background-color: #3b3b3b;
    border-radius: 5px;
    color: #fff;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .code-body code {
    height: 90%;
    color: #fff;
    font-family: monospace;
  }
  #course-mobile-main .code-body code {
    font-size: 4vw;
  }
  pre {
    padding-left: 30%;
  }
}
.code-output {
  background-color: #3b3b3b;
  border-radius: 5px;
  color: #000;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1%;
}
.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5% 1%;
  color: #fff;
}
.output-body {
  background-color: #000;
  border-radius: 5px;
  padding: 2%;
  color: #fff;
  overflow-y: auto;
}
.styled-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9em;
  font-family: sans-serif;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  font-family: Poppins, sans-serif;
}
.styled-table thead tr {
  background-color: #5c82f4;
  color: #fff;
  text-align: left;
}
.styled-table td,
.styled-table th {
  padding: 12px 15px;
}
.styled-table tbody tr {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  color: #000;
}
.styled-table tbody tr:nth-of-type(even) {
  background-color: #f2f2f2;
}
.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #5c82f4;
}
.styled-table tbody tr.active-row {
  font-weight: 700;
  color: #5c82f4;
}