* {
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(to right, #ffffff, #c3c3c3, #8a8a8a, #555555, #252525);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 80%;
  max-width: 1000px;
  text-align: justify;
  overflow-x: hidden;
  margin: 0 auto;
}

header {
  position: fixed;
  width: 100%;
  height: 80px;
  top: 0;
  left: 0;
}
header .progressbar {
  position: fixed;
  width: 0;
  height: 5px;
  background-color: rgb(18, 175, 206);
  top: 0;
  left: 0;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero img {
  height: 180px;
  filter: invert(0.75);
  cursor: pointer;
}

#container .content .title {
  text-indent: -5px;
}
#container .content .stars {
  margin-left: 20px;
  position: relative;
  padding-left: 10px;
}
#container .content a {
  text-decoration: none;
}
#container .content .stars::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: rgba(131, 131, 136, 0.405);
}
#container .content span {
  font-weight: bold;
  margin-left: 5px;
}
#container .content #table-content {
  background-color: rgba(12, 162, 195, 0.1137254902);
  max-width: 400px;
  overflow: hidden;
  border-radius: 10px;
}
#container .content .bullets {
  margin-left: 10px;
}
#container .content img {
  max-width: 75%;
  height: auto;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
#container .content .image {
  display: flex;
  justify-content: center;
  align-items: center;
}
#container .content .tutorial {
  display: flex;
  justify-content: center;
  align-items: center;
}
#container .content hr {
  border: 1px dashed wheat;
}
#container .content h1 {
  color: white;
}
#container .content h2 {
  letter-spacing: 1.2px;
}
#container .content h3 {
  letter-spacing: 1.2px;
  color: rgb(92, 89, 89);
}
#container .content p {
  line-height: 1.5;
  font-size: 18px;
}
#container .content .wrap-text {
  display: block;
  padding-left: 2em;
}
#container .content .link {
  color: rgb(35, 35, 150);
  font-weight: bold;
}
#container .content li {
  font-size: 18px;
}
#container .content .iframe {
  text-align: center;
}
#container .content table {
  border-collapse: collapse;
  width: 100%;
  display: flex;
  justify-content: center;
}
#container .content table td, #container .content table th {
  border: 1px solid black;
  padding: 8px;
  font-size: 20px;
  text-align: center;
}
#container .content table th {
  background-color: rgba(13, 86, 37, 0.667);
  font-weight: bold;
  color: white;
  text-align: center;
}
#container .content table td:first-child {
  font-weight: bold;
  background-color: rgba(203, 195, 195, 0.261);
}
#container .content table th:nth-child(3), #container .content table td:nth-child(3) {
  text-align: center;
}
#container .content .btn {
  display: flex;
  justify-content: center;
}
#container .content .btn button {
  padding: 10px 25px;
  font-size: 20px;
  overflow: hidden;
  border: none;
  border-radius: 10px;
  background-color: rgba(4, 95, 20, 0.5882352941);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.73);
}
#container .content ol {
  margin-left: 3%;
  font-weight: bold;
}
#container .content ol p {
  font-weight: normal;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(transparent, #00c6ff);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(transparent, #30ff00);
}

@media screen and (max-width: 390px) {
  iframe {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */