ul {
  margin: 0;
  list-style: none;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, li {
  margin: 0;
}

a {
  text-decoration: none;
}

input {
  border: none;
}
input:focus {
  outline: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

address {
  font-style: normal;
}

* {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

textarea {
  resize: none;
}

body {
  font-family: "Montserrat Alternates";
}

body {
  background-image: url(../img/background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgb(245, 239, 239);
}

.container {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
  padding-right: 92px;
  padding-left: 92px;
  background-color: white;
}

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

::-webkit-scrollbar-track {
  background: #bdbdbd;
}

::-webkit-scrollbar-thumb {
  background-color: #8acdcf;
  border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
  -webkit-transition: 250ms;
  transition: 250ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #6ba0a1;
}

.line {
  position: relative;
}
.line::before {
  content: "";
  width: 536px;
  height: 1px;
  background-color: black;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
}

body {
  background-color: rgb(245, 239, 239);
  color: #000000;
}
body h2 {
  color: #000000;
}
body .header-nav-list-svg {
  stroke: #000000;
}
body.dark {
  background-color: #4d4d4d;
  color: #ffffff;
}
body.dark .container {
  background-color: #222;
}
body.dark h2 {
  color: #ffffff;
}
body.dark button:has(svg) {
  background-color: #ffffff;
}
body.dark button:has(svg) svg {
  fill: #000000;
}
body.dark .logo-svg {
  fill: #ffffff;
}
body.dark .logo-text-wrapper {
  color: #ffffff;
}
body.dark .header-nav-list-svg {
  stroke: #ffffff;
}
body.dark section {
  background-color: #222222;
}
body.dark section::before {
  background-color: #ffffff;
}
body.dark .birth-year-check-text {
  color: #55ff55;
}
body.dark .birth-year-check-text.output-text-wrong {
  color: #ff5555;
}
body.dark .number-guessing-game-desc {
  color: #55ff55;
}
body.dark .number-guessing-game-desc.output-text-wrong {
  color: #ff5555;
}

.relative {
  position: relative;
}

.sub-menu {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  font-size: 13px;
  width: 110px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 1px solid transparent;
  border-top: none;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.sub-menu-link {
  background: none;
  color: black;
  padding: 4px 0;
  display: block;
  width: 110px;
  text-align: center;
}
.sub-menu-link:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 110px;
  background-color: #F1F1F1;
}

.sub-menu:hover,
.relative:hover .sub-menu {
  height: auto;
  max-height: 105px;
  border-color: #000000;
  z-index: 1;
}

.dark .sub-menu:hover,
.dark .relative:hover .sub-menu {
  border-color: white;
}
.dark .sub-menu-link {
  color: white;
}
.dark .sub-menu-link:hover {
  background-color: #4d4d4d;
}
.dark .sub-menu {
  background-color: #222;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.backdrop.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.no-scroll {
  overflow: hidden;
}

.modal-auto {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 576px;
  max-height: 316px;
  background-color: white;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 20px;
  -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2);
  z-index: 999;
  padding: 46px 92px;
  position: relative;
}
.modal-auto::before {
  content: url("../img/code-dec.png");
  width: 30px;
  height: 30px;
  position: absolute;
  top: 145px;
  right: 41px;
}
.modal-auto::after {
  content: url("../img/puzzle-dec.png");
  width: 30px;
  height: 30px;
  position: absolute;
  top: 230px;
  left: 85px;
}

.modal-desc-auto {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  min-width: 392px;
  margin-bottom: 42px;
}

.modal-label, .modal-span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

.modal-name-span {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  min-width: 392px;
}

.input-name {
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  background-color: rgb(215, 215, 215);
  max-width: 169px;
  border-radius: 20px;
  border: none;
  padding: 10px;
  margin: 0 auto;
}

.modal-btn-send {
  background-color: black;
  border-radius: 20px;
  color: white;
  max-width: 105px;
  font-family: "Montserrat Alternates";
  font-weight: 400;
  font-size: 12px;
  margin: 0 auto;
  padding: 10px 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
}

.modal-btn-close {
  background-color: inherit;
  position: absolute;
  top: 30px;
  right: 30px;
}

.svg-auto {
  display: inline-block;
  width: 15px;
  height: 15px;
}

.modal-form::before {
  content: url("../img/cr-o-dec.png");
  width: 30px;
  height: 30px;
  position: absolute;
  top: 230px;
  right: 85px;
}
.modal-form::after {
  content: url("../img/knife-dec.png");
  width: 30px;
  height: 30px;
  position: absolute;
  top: 154px;
  left: 41px;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

.backdrop.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.no-scroll {
  overflow: hidden;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 576px;
  max-height: 316px;
  background-color: white;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 20px;
  -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
  padding: 83px 138px 138px 138px;
  position: relative;
}
.modal::before {
  content: url("../img/code-dec.png");
  width: 30px;
  height: 30px;
  position: absolute;
  top: 69px;
  right: 42px;
}
.modal::after {
  content: url("../img/puzzle-dec.png");
  width: 30px;
  height: 30px;
  position: absolute;
  top: 145px;
  left: 85px;
}

.modal-desc {
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
  line-height: _;
  text-align: center;
}
.modal-desc::before {
  content: url("../img/cr-o-dec.png");
  width: 30px;
  height: 30px;
  position: absolute;
  top: 145px;
  right: 87px;
}
.modal-desc::after {
  content: url("../img/knife-dec.png");
  width: 30px;
  height: 30px;
  position: absolute;
  top: 69px;
  left: 43px;
}

.scientists-title {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  text-align: center;
  font-size: 16px;
  color: black;
  padding-bottom: 36px;
  padding-top: 35px;
}

.scientists-list {
  max-width: 577px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 59px;
  margin-bottom: 36px;
}

.scientist-btn-list {
  max-width: 857px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 36px;
}

.scientist-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  background-color: #D9D9D9;
  border-radius: 20px;
}

.scientist-name {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  text-align: center;
  font-size: 9px;
  color: black;
  margin-bottom: 5px;
}

.scientist-age {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  text-align: center;
  font-size: 9px;
  color: black;
}

.scientist-btn {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  line-height: 14.63px;
  -webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.scientist-btn:hover {
  background-color: #D9D9D9;
  color: black;
}

.scientist-btn-list-item {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding: 0 18px;
  margin-bottom: 20px;
}
.scientist-btn-list-item:nth-child(odd) {
  text-align: right;
  padding-left: 0;
}
.scientist-btn-list-item:nth-child(even) {
  padding-right: 0;
}
.scientist-btn-list-item:last-child {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  text-align: center;
  margin-bottom: 0;
}

.dark .scientist-btn {
  background-color: #D9D9D9;
  color: black;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 3px 3px 0px 0px #4d4d4d;
          box-shadow: 3px 3px 0px 0px #4d4d4d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.dark .scientist-btn:hover {
  background-color: black;
  color: white;
}
.dark .scientist-card {
  background-color: #707070;
}

.our-team-title {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  text-align: center;
  font-size: 16px;
  color: black;
  padding-bottom: 36px;
  padding-top: 35px;
}

.our-team-slides {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  width: 800px;
  margin: 0 auto;
  -webkit-transition: 1s;
  transition: 1s;
}

.our-team-slider {
  overflow: hidden;
  position: relative;
  width: 800px;
  margin: 0 auto;
}

.slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 1s;
  transition: 1s;
}

.slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 800px;
}

.our-team-img {
  width: 150px;
  height: 150px;
  border-radius: 20px;
}

.our-team-name-text {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  text-align: center;
  font-size: 14px;
  color: black;
}

.our-team-work-text {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  text-align: center;
  font-size: 12px;
  color: black;
}

.our-team-btn-prev,
.our-team-btn-next {
  position: absolute;
  top: 50%;
  color: black;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  background: none;
}

.our-team-btn-prev svg,
.our-team-btn-next svg {
  width: 50px;
  height: 100px;
  stroke: currentColor;
}

.our-team-btn-prev {
  left: 10px;
}

.our-team-btn-next {
  right: 10px;
}

.our-team-buttons-lines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 24px;
  padding-bottom: 36px;
  gap: 6px;
}

.line-btn {
  width: 18px;
  height: 3px;
  border-radius: 3px;
  background-color: #D9D9D9;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.line-btn.active {
  width: 30px;
  background-color: #797979;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.line-btn.active:hover {
  width: 30px;
  background-color: #5c5b5b;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.line-btn:hover {
  background-color: rgb(184, 183, 183);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.dark .our-team-name-text {
  color: white;
}
.dark .our-team-work-text {
  color: white;
}
.dark .our-team-btn-prev,
.dark .our-team-btn-next {
  color: white;
  background: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.dark .our-team-btn-prev:hover,
.dark .our-team-btn-next:hover {
  color: rgb(102, 102, 102);
}
.dark .our-team-title {
  color: white;
}

.dark .header {
  background-color: #222;
}

.header {
  padding: 21px 0;
  background-color: white;
  width: 100%;
}
.header-container {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
  padding-right: 92px;
  padding-left: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: _;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
}
.header .logo {
  margin-right: 81px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: right;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: _;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
}
.header .logo-svg {
  fill: #000000;
}
.header .logo-text-wrapper {
  margin-left: 9px;
  width: 44px;
  height: 35px;
}
.header .logo-text-stylized {
  font-family: Sacramento;
  font-size: 12px;
  font-weight: 400;
  line-height: 17.51px;
  text-align: right;
}
.header-nav {
  margin-right: 361px;
}
.header-nav-list {
  width: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: _;
      -ms-flex-pack: _;
          justify-content: _;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
}
.header-nav-list-item {
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: left;
}
.header-nav-list-item:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: _;
      -ms-flex-pack: _;
          justify-content: _;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
}
.header-settings-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: _;
      -ms-flex-pack: _;
          justify-content: _;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 51px;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
}
.header-settings-list-text {
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: right;
  width: 94px;
}
.header-settings-list-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.header-settings-list-switch-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
}
.header-settings-list-switch-checkbox:checked + span {
  background-color: #cccccc;
}
.header-settings-list-switch-checkbox:checked + span::before {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 0;
  top: 0px;
  background-color: white;
  -webkit-transition: 400ms;
  transition: 400ms;
  border-radius: 50%;
  background-image: url("../img/moonBtn.png");
  background-position: 0;
}
.header-settings-list-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #7a7a7a;
  -webkit-transition: 400ms;
  transition: 400ms;
  border-radius: 10px;
}
.header-settings-list-switch-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 0;
  top: 0px;
  background-color: white;
  -webkit-transition: 400ms;
  transition: 400ms;
  border-radius: 50%;
  background-image: url("../img/header-slider.png");
  background-position: 0;
}

.hero {
  padding: 36px 0;
}
.hero-title {
  font-family: inherit;
  font-size: 24px;
  font-weight: 400;
  line-height: 29.26px;
  text-align: center;
}

.birth-year-check {
  padding-top: 36px;
  padding-bottom: 36px;
}
.birth-year-check-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: _;
      -ms-flex-pack: _;
          justify-content: _;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.birth-year-check-title {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: center;
  color: #000000;
}
.birth-year-check-bottom-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 202px;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
}
.birth-year-check-input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: _;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
  -webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
}
.birth-year-check-input {
  border-radius: 20px 0 0 20px;
  height: 35px;
  width: 180px;
  padding: 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: left;
  background-color: #D7D7D7;
  color: #7E7E7E;
}
.birth-year-check-btn {
  border-radius: 0 20px 20px 0;
  height: 35px;
  width: 35px;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: _;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.birth-year-check-btn-svg {
  fill: #ffffff;
}
.birth-year-check-btn:hover {
  background-color: rgb(70, 70, 70);
}
.birth-year-check-text {
  width: 230px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: right;
  color: #039900;
}
.birth-year-check-text.output-text-wrong {
  color: #990000;
}

.dark .birth-year-check-input-wrapper {
  -webkit-box-shadow: 3px 3px 0px 0px #4d4d4d;
          box-shadow: 3px 3px 0px 0px #4d4d4d;
}
.dark .birth-year-check-btn:hover {
  background-color: #747474;
}

.dino {
  padding-top: 36px;
  padding-bottom: 36px;
}
.dino-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: _;
      -ms-flex-pack: _;
          justify-content: _;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.dino-title {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: center;
}

.football {
  padding: 36px 0;
}
.football-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: _;
      -ms-flex-pack: _;
          justify-content: _;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.football-title {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: center;
}
.football-field {
  width: 720px;
  height: 220px;
  border: 2px solid #000000;
  border-radius: 37px;
  background-color: #5ABB58;
}
.football-ball {
  width: 50px;
  height: 50px;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.dark .football-field {
  background-color: #387837;
}

.number-guessing-game {
  padding: 36px 0;
}
.number-guessing-game-input {
  border-radius: 20px 0 0 20px;
  height: 35px;
  width: 115px;
  padding: 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: left;
  background-color: #D7D7D7;
  color: #7E7E7E;
}
.number-guessing-game-btn {
  border-radius: 0 20px 20px 0;
  height: 35px;
  width: 35px;
  background-color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: _;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.number-guessing-game-btn-svg {
  fill: #ffffff;
}
.number-guessing-game-btn:hover {
  background-color: rgb(70, 70, 70);
}

.number-guessing-game-title {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  font-size: 16px;
  line-height: 0.8;
  text-align: center;
  margin-bottom: 36px;
}

.guessing-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 202px;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
}

.number-guessing-game-desc {
  display: block;
  width: 100px;
  height: 1px;
}

.guessing-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: _;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
  -webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
}
.guessing-container::before {
  content: "";
  width: 215px;
  height: 35px;
  position: absolute;
  z-index: -1;
  border-radius: 20px;
  top: 3px;
  left: 3px;
  background-color: #7E7E7E;
}

.number-guessing-game-desc {
  width: 230px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: right;
  color: #039900;
}
.number-guessing-game-desc.output-text-wrong {
  color: #990000;
}

.container-for-guessing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: _;
      -ms-flex-pack: _;
          justify-content: _;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.dark .guessing-container {
  -webkit-box-shadow: 3px 3px 0px 0px #4d4d4d;
          box-shadow: 3px 3px 0px 0px #4d4d4d;
}
.dark .number-guessing-game-btn:hover {
  background-color: #747474;
}

.enter-numbers {
  padding: 36px 0;
}
.enter-numbers-input {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  border-radius: 20px;
  height: 35px;
  width: 180px;
  padding: 10px;
  background-color: rgb(215, 215, 215);
  color: #7E7E7E;
  border: none;
  position: relative;
  max-width: 135px;
  height: 35px;
}
.enter-numbers-input-wrapper {
  position: relative;
}
.enter-numbers-input-wrapper::before {
  content: "";
  width: 135px;
  height: 35px;
  position: absolute;
  z-index: -1;
  border-radius: 20px;
  top: 3px;
  left: 3px;
  background-color: #7E7E7E;
}

.enter-numbers-title {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  font-size: 16px;
  line-height: 0.8;
  text-align: center;
  margin-bottom: 36px;
}

.enter-numbers-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 481px;
  min-width: 481px;
  margin: 0 auto 36px auto;
}

.enter-numbers-text {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  font-size: 12px;
  text-align: center;
}

.rps-container {
  position: relative;
}
.rps-container-choice {
  text-align: center;
  padding-top: 36px;
  padding-bottom: 36px;
}
.rps-title {
  font-family: "Montserrat Alternates";
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  margin-bottom: 36px;
}
.rps-choice-btn {
  padding: 10px;
  margin-right: 38px;
  margin-left: 38px;
  border-radius: 20px;
  background-color: #000000;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.rps-choice-btn:last-child {
  margin: 0;
}
.rps-choice-btn:first-child {
  margin: 0;
}
.rps-choice-btn:hover {
  background-color: rgb(61, 61, 61);
}
.rps-results {
  margin-top: 20px;
}
.rps-message {
  margin-top: 36px;
}
.rps-choices-text {
  margin: 0 auto;
  text-align: center;
  margin-top: 36px;
  font-family: "Montserrat Alternates";
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  background-color: #000000;
  padding: 10px 20px;
  border-radius: 20px;
  width: 215px;
  color: #FFFFFF;
}
.rps-results {
  font-size: 22px;
  font-weight: bold;
}
.rps-score {
  position: absolute;
  right: 0;
  top: 90px;
}
.rps-score-text {
  font-family: "Montserrat Alternates";
  font-size: 12px;
  font-weight: 400;
  line-height: 20.4px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.rps-message {
  font-family: "Montserrat Alternates";
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.dark .rps-choices-text {
  background-color: #D9D9D9;
  color: black;
}
.dark .rps-choice-btn {
  background-color: #4d4d4d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.dark .rps-choice-btn:hover {
  background-color: #5f5f5f;
}

.dark .footer {
  background-color: #222;
}

body.dark .footer {
  background-color: #222;
  color: white;
}

body.dark .footer a {
  color: white;
}

body.dark .footer a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #ccc;
}

body.dark .footer .footer-subscription-btn {
  background-color: #444;
  color: white;
}

body.dark .footer .footer-subscription-btn:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #555;
}

body.dark .footer .footer-subscription-input {
  background-color: #333;
  color: white;
  border: 1px solid #444;
}

body.dark .footer .footer-subscription-input::-webkit-input-placeholder {
  color: #bbb;
}

body.dark .footer .footer-subscription-input::-moz-placeholder {
  color: #bbb;
}

body.dark .footer .footer-subscription-input:-ms-input-placeholder {
  color: #bbb;
}

body.dark .footer .footer-subscription-input::-ms-input-placeholder {
  color: #bbb;
}

body.dark .footer .footer-subscription-input::placeholder {
  color: #bbb;
}

body.dark .footer .footer-subscription-text {
  color: #ddd;
}

.footer {
  height: 230px;
  padding-top: 61px;
  padding-bottom: 59px;
  background-color: white;
  width: 100%;
}
.footer-container {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: _;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
}
.footer .logo-footer {
  margin-right: 185px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 24.63px;
  text-align: right;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: _;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
}
.footer .logo-footer-svg {
  fill: #000000;
}
.footer .logo-footer-text-stylized {
  font-family: Sacramento;
  font-size: 18px;
  font-weight: 400;
  line-height: 17.51px;
  text-align: right;
}
.footer-social-list {
  font-family: "Montserrat Alternates";
  font-size: 12px;
  font-weight: 400;
  line-height: 20.4px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  margin-right: 187px;
  width: 465px;
}
.footer-social-list-link {
  color: #000000;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer-social-list-link:hover {
  color: rgb(52, 52, 52);
}
.footer-subscription-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
}
.footer-subscription-input {
  width: 204px;
  height: 35px;
  border-radius: 20px;
  padding-left: 10px;
  background-color: #D7D7D7;
  font-family: "Montserrat Alternates";
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #7E7E7E;
}
.footer-subscription-btn {
  width: 107px;
  height: 35px;
  padding: 10px;
  border-radius: 20px;
  background-color: #000000;
  font-family: "Montserrat Alternates";
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #FFFFFF;
  margin-left: 36px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer-subscription-btn:hover {
  background-color: #D9D9D9;
  color: black;
}
.footer-subscription-text {
  font-family: "Montserrat Alternates";
  font-size: 6px;
  font-weight: 400;
  line-height: 7.31px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #000000;
}

.input-calculator {
  border-radius: 20px;
  height: 35px;
  width: 135px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: left;
  background-color: #D7D7D7;
  color: #7E7E7E;
  -webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
}

.equals-btn {
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: _;
  text-align: center;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  -webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
  width: 25px;
  height: 25px;
}
.equals-btn:hover {
  background-color: rgb(70, 70, 70);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.base-calculator {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 38px;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
  padding-bottom: 48px;
  padding-top: 49px;
}

.operator-wrapper {
  width: 62px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
}

.operator-btn {
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: _;
  text-align: center;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  -webkit-box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 3px 3px 0px 0px rgba(0, 0, 0, 0.2509803922);
  width: 25px;
  height: 25px;
}
.operator-btn:hover {
  background-color: rgb(70, 70, 70);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.calculator-title {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: center;
  padding-top: 36px;
}

.result-calculator {
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 400;
  color: black;
  background-color: #D7D7D7;
  color: #7E7E7E;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dark .operator-btn {
  background-color: #D9D9D9;
  color: black;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 3px 3px 0px 0px #4d4d4d;
          box-shadow: 3px 3px 0px 0px #4d4d4d;
}
.dark .operator-btn:hover {
  background-color: rgb(128, 128, 128);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.dark .equals-btn {
  background-color: #D9D9D9;
  color: black;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 3px 3px 0px 0px #4d4d4d;
          box-shadow: 3px 3px 0px 0px #4d4d4d;
}
.dark .equals-btn:hover {
  background-color: rgb(128, 128, 128);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.input-time {
  border-radius: 20px 0 0 20px;
  height: 35px;
  width: 115px;
  padding: 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: left;
  background-color: #D7D7D7;
  color: #7E7E7E;
}

.result-time {
  padding: 10px;
  font-size: 12px;
  font-weight: 400;
  color: black;
  width: 200px;
}

.base-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 33px;
  -ms-flex-wrap: _;
      flex-wrap: _;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: _;
          flex-direction: _;
  padding-bottom: 48px;
  padding-top: 49px;
}

.dark .result-time {
  color: #ffffff;
}/*# sourceMappingURL=main.css.map */