html,
body {
  min-height: 100vh;
  background-color: #222123;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
  color: #fff;
  position: relative;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
button,
input {
  border: none;
  outline: none;
  background: none;
}
input::placeholder {
  opacity: 1;
}
img {
  display: block;
}
p {
  line-height: 1.5;
}
@font-face {
  font-family: "Noto Sans";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/NotoSans/NotoSans-400.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-weight: 500;
  font-style: normal;
  src: url("../fonts/NotoSans/NotoSans-500.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/NotoSans/NotoSans-600.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/NotoSans/NotoSans-700.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans";
  font-weight: 800;
  font-style: normal;
  src: url("../fonts/NotoSans/NotoSans-800.woff2") format("woff2");
}
.button {
  padding: 8px 24px;
  border-radius: 100px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.button_primary {
  background-color: #df602a;
  color: #fff;
}
.button_secondary {
  border: 1px solid #df602a;
  color: #df602a;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.button_secondary:hover {
  background-color: #df602a;
  color: #fff;
}
.button i {
  transition: transform 0.2s ease-in-out;
}
.button:hover i {
  transform: translateX(4px);
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  min-height: 100vh;
  flex-direction: column;
  z-index: 9999;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .container {
    padding: 0 16px;
  }
}
.h1 {
  font-size: 48px;
  font-weight: 700;
}
.h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}
.h2_left {
  text-align: left;
}
.h2 span {
  color: #df602a;
}
.subtitle {
  color: #9999a7;
  font-size: 18px;
  font-weight: 500;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  margin-top: 20px;
}
.header__logo {
  font-weight: 700;
  font-size: 24px;
}
.header__logo span {
  color: #df602a;
}
.header__links {
  margin-left: auto;
  display: flex;
  gap: 12px;
}
.header__link {
  color: #9999a7;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.header__link:hover {
  color: #fff;
}
.header__burger {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__button,
  .header__links {
    display: none;
  }
  .header__links {
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    flex-direction: column;
    background-color: #222123;
    width: 100%;
    align-items: center;
    padding-top: 20px;
    border-bottom: 1px solid #51515a;
    padding-bottom: 10px;
  }
  .header__button {
    margin-left: auto;
  }
  .header__burger {
    appearance: none;
    display: grid;
    cursor: pointer;
    place-items: center;
    order: 1;
    height: 30px;
    aspect-ratio: 1;
  }
  .header__burger::after {
    content: "\f0c9";
    font-size: 24px;
    font-family: "Font Awesome 6 Pro";
  }
  .header__burger:checked::after {
    content: "\f00d";
  }
  .header__burger:checked ~ .header__links,
  .header__burger:checked ~ .header__button {
    display: flex;
  }
}
.footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 60px;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}
.footer__logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}
.footer__logo span {
  color: #df602a;
}
.footer__copy {
  font-size: 14px;
  color: #9999a7;
}
.footer__title {
  font-size: 20px;
  font-weight: 600;
}
.footer__list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #9999a7;
}
.footer__list a {
  transition: color 0.2s ease-in-out;
}
.footer__list a:hover {
  color: #fff;
}
.footer__list i {
  margin-right: 6px;
}
.footer__author {
  color: #9999a7;
}
.footer__author a {
  display: inline-block;
  background-color: #df602a;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  position: relative;
}
.footer__author a::after {
  content: "";
  position: absolute;
  top: -8px;
  right: 50%;
  background-color: #222123;
  color: #fff;
  padding: 4px 8px;
  transform: translate(50%, -100%);
  border: 1px solid #51515a;
  border-radius: 4px;
  scale: 0;
}
.footer__author a:hover::after {
  scale: 1;
}
@media (min-width: 1200px) {
  ::-webkit-scrollbar {
    background: var(--950, #222123);
    width: 6px;
  }
  ::-webkit-scrollbar-thumb {
    background-color: var(--Orange, #df602a);
    border-radius: 10px;
    width: 6px;
  }
  ::-webkit-scrollbar-corner {
    border-radius: 10px;
  }
}