/* $font-main: 'Space Grotesk', serif; */
/* $font-main: 'Space Grotesk Fallback', serif; */
/* $font-mono: monospace; */
@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/SpaceGrotesk-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/SpaceGrotesk-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/SpaceGrotesk-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/SpaceGrotesk-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk Fallback";
  src: local("Georgia");
  font-weight: 700;
  size-adjust: 110%;
  /* ascent-override: 50%; */
  /* descent-override: 22%; */
  /* line-gap-override: 0%; */
}
@font-face {
  font-family: "DIN Next Slab Black";
  src: url("/fonts/DINNextSlabBlack.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ioskeley Mono";
  src: url("/fonts/IoskeleyMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@view-transition {
  navigation: auto;
}
:root {
  color-scheme: light dark;
}

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

body {
  font-family: "Space Grotesk", "Space Grotesk Fallback", serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: light-dark(hsl(115, 31%, 21%), hsl(48, 1%, 8%));
  color: light-dark(hsl(48, 1%, 20%), hsl(48, 45%, 95%));
}

main {
  flex: 1;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: light-dark(hsl(48, 45%, 95%), hsl(48, 1%, 20%));
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.1s ease;
}
header:not(.scroll) {
  background-color: light-dark(hsl(115, 31%, 21%), hsl(48, 1%, 8%));
  box-shadow: 0 1px 3px light-dark(hsl(44, 30%, 23%), hsl(111, 10%, 8%));
  border-bottom: 1px solid transparent;
}
header.scroll {
  background-color: none;
  box-shadow: inset 0 40px 60px 0 light-dark(hsl(115, 31%, 21%), hsl(48, 1%, 8%));
  /* border-bottom: 1px solid $header-border; */
  border-image: linear-gradient(to right, light-dark(hsl(48, 45%, 95%), hsl(48, 1%, 20%)), light-dark(hsl(115, 31%, 21%), hsl(48, 1%, 8%)), light-dark(hsl(48, 45%, 95%), hsl(48, 1%, 20%))) 1;
}
header > .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .left a {
  font-family: "Times New Roman", Times, serif;
  font-weight: 1000;
  font-size: 2rem;
  letter-spacing: -3px;
  position: relative;
  transition: color 0.2s ease;
  margin-right: 1rem;
}
header .left a::after {
  content: "";
  position: absolute;
  border-top: 2px solid white;
  border-bottom: 3px solid white;
  border-radius: 2px 2px 3px 3px;
  top: 7px;
  left: -2px;
  right: -6px;
  bottom: 6px;
}
header .left a:hover {
  color: hsl(44, 100%, 60%);
}
header .left a:hover::after {
  border-color: hsl(44, 100%, 60%);
}
header .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
header .nav .light-dark {
  background: none;
  border: none;
  cursor: pointer;
}
header .nav .light-dark > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .nav .light-dark > div > img {
  width: 26px;
}
header .nav .light-dark > div > img:hover {
  filter: brightness(0) saturate(100%) invert(58%) sepia(61%) saturate(6450%) hue-rotate(128deg) brightness(96%) contrast(101%);
}
header .nav a {
  transition: color 0.2s ease;
}
header .nav a:hover {
  color: light-dark(hsl(152, 100%, 30%), hsl(150, 100%, 50%));
}
header a {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: white;
  font-weight: 600;
}

@media (max-width: 530px) {
  header > .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 380px) {
  header > .container > .nav {
    gap: 0;
  }
  header > .container > .nav a {
    margin-left: 1rem;
  }
}
@media (max-width: 350px) {
  header > .container > .nav a {
    display: inline-block;
    overflow: hidden;
    max-width: 2em;
  }
}
@media (max-width: 260px) {
  header > .container > .nav a {
    max-width: 1.5em;
  }
}
footer {
  padding: 2rem 0;
  margin-top: auto;
  border-top: 1px solid transparent;
  box-shadow: 0 -1px 3px light-dark(hsl(44, 30%, 23%), hsl(111, 10%, 8%));
  background-color: light-dark(hsl(115, 31%, 21%), hsl(48, 1%, 8%));
}
footer > .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* >.left { */
  /* } */
}
footer > .container > .right {
  font-size: 0.95rem;
  color: white;
  text-align: right;
}
footer > .container > .right a {
  text-decoration: none;
  color: hsl(44, 100%, 60%);
  transition: color 0.2s ease;
}
footer > .container > .right a:hover {
  color: hsl(44, 67%, 45%);
}
footer > .container > .right p,
footer > .container > .right img {
  display: inline-block;
}
footer > .container > .right img {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(84%) sepia(60%) saturate(2164%) hue-rotate(329deg) brightness(104%) contrast(101%);
  transform: translateY(5px);
  margin-right: 10px;
}

@media (max-width: 768px) {
  header .container {
    /* padding: 1rem; */
  }
  footer {
    padding: 1.5rem 0 1rem 0;
  }
  footer > .container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
    text-align: center;
  }
  footer > .container .left {
    justify-content: center;
  }
  footer > .container .right {
    text-align: center;
  }
}
.social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.social > div {
  padding: 0.3rem 1rem 0.6rem 1rem;
  border: 1px solid light-dark(hsl(115, 31%, 26%), hsl(48, 1%, 20%));
  border-radius: 5px;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.social > div:hover {
  background-color: light-dark(hsl(115, 31%, 23%), hsl(48, 1%, 10%));
}
.social > div img {
  display: inline-block;
  width: 20px;
  /* filter: $yellow-500-filter; */
  transform: translateY(5px);
  margin-right: 10px;
}
.social > div a,
.social > div p {
  color: hsl(44, 100%, 60%) !important;
  font-size: 0.875rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
.social > div p {
  display: inline-block;
  padding: 0;
  margin: 0;
}

:root[data-theme=light] footer {
  background-image: url("/icons/footer_light.svg");
}

:root[data-theme=dark] footer {
  background-image: url("/icons/footer_dark.svg");
}

/*# sourceMappingURL=main0.css.map */