* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
  overflow-x: hidden !important;
  background: #0f0f0f;
  font-family: "Noto_Sans", sans-serif;
}

@font-face {
  font-family: "Arimo";
  font-style: normal;
  font-weight: 800;
  src: url(/assets/fonts/Arimo/static/Arimo-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Noto_Sans";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Noto_Sans/static/NotoSans-Light.ttf) format("truetype");
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #242421;
}
::-webkit-scrollbar-thumb {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb:hover {
  background: #000;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  padding: 2em;
  z-index: 100;
  transform: translateY(0);
  transition: none;
}

.starter-content {
  width: 100%;
  height: 75vh;
  position: relative;
  top: 0;
}

.starter-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
}

.starter-text {
  position: absolute;
  bottom: 5%;
  left: 10%;
}

h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 200;
}

.quick-nav-container {
  padding: 1.5rem 10% 1.5rem 10%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #080808;
}

.page-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.home-link {
  color: #737373;
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.home-link:hover {
  color: #fff;
}

.home-link:hover ~ .page-link {
  color: #737373;
}

main {
  padding: 10% 10% 5%;
}
h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 5%;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.mobile-text {
  display: none;
}
main {
  color: #fff;
}
main h2 {
  font-size: 2.4rem;
  font-weight: 300;
  margin: 2% 0;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
main h3 {
  font-size: 2.2rem;
  font-weight: 300;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  margin: 2rem 0;
}
main h4 {
  font-size: 1.7rem;
  font-weight: 300;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  margin: 2rem 0;
}
main p {
  font-size: 1.1rem;
  font-weight: 200;
}

main ul {
  padding: 0 30px;
}
main p,
main ul li {
  font-weight: 200;
  line-height: 2rem;
}
main ul li {
  font-size: 1.1rem;
}
main a {
  color: #f49b1f;
  display: inline-block;
  font-weight: 200;
  position: relative;
  text-decoration: none;
  font-size: 1.1rem;
  word-break: break-all;
}
main a:before {
  background-color: #f49b1f;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: width 0.3s ease;
  width: 0;
}
main a:hover:before {
  width: 100%;
}
.date {
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 100 !important;
  margin-top: 5rem;
}

@media screen and (max-width: 767px) {
  header {
    padding: 1.5em 1.7em 1.7em 3%;
  }
  main {
    padding: 40% 5% 10% 5%;
  }
  h1 {
    font-size: 2.5rem;
    word-break: break-all;
  }
  .mobile-text {
    display: block;
  }
  .desktop-text {
    display: none;
  }
  main h2 {
    font-size: 2rem;
  }
  .date {
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  main {
    padding: 20% 5% 5% 5%;
  }
  .date {
    margin-top: 3rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  main {
    padding: 20% 5% 5% 5%;
  }
  main p {
    font-size: 1.2rem;
  }

  main ul li {
    font-size: 1.2rem;
  }
  main a {
    font-size: 1.2rem;
  }
}
