@font-face {
  font-family: "Stereo";
  src: url("Assets/Stereo-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --page-background: #f6f6f6;
  --link-color: #d2d2d2;
  --link-hover: #00aaff;
  --viewport-height: 100vh;
}

@supports (height: 100dvh) {
  :root {
    --viewport-height: 100dvh;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  min-height: var(--viewport-height);
  overflow: hidden;
  background: var(--page-background);
  color: var(--link-color);
  font-family: "Stereo", Arial, Helvetica, sans-serif;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
  font-feature-settings: "ss01";
  font-variant-ligatures: discretionary-ligatures;
}


a {
  color: inherit;
  text-decoration: none;
  transition: color 500ms ease;
}

a:hover,
a:focus-visible {
  color: var(--link-hover);
}

a:focus-visible {
  outline: 2px solid var(--link-hover);
  outline-offset: 3px;
}

.site-links {
  position: fixed;
  top: 24px;
  left: 40px;
  z-index: 2;
}

.link-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.3em;
}

.animation-stage {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  height: var(--viewport-height);
  display: grid;
  place-items: center;
  pointer-events: none;
}

#lottie-animation {
  width: min(68vw, 1000px);
  aspect-ratio: 8 / 9;
}

#lottie-animation svg {
  display: block;
  width: 100%;
  height: 100%;
}

#lottie-animation svg path {
  clip-rule: evenodd;
  fill-rule: evenodd;
}

@media (max-width: 640px) {
  #lottie-animation {
    width: min(76vw, 310px);
  }
}


