@font-face {
  font-family: Studio;
  src: url(assets/sans.otf);
}
@font-face {
  font-family: Studio;
  src: url(assets/sans-bold.otf);
  font-weight: 700;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Studio, Arial, sans-serif;
}
button,
a,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #7155fa;
  outline-offset: 5px;
}
button {
  min-height: 44px;
}
button:disabled {
  cursor: default;
  opacity: 0.6;
}
[hidden] {
  display: none !important;
}
.tools {
  position: fixed;
  z-index: 20;
  bottom: 18px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tools button,
.tools a {
  background: #fff;
  color: #222;
  border: 1px solid #ddd;
  border-radius: 30px;
  min-height: 44px;
  padding: 12px 16px;
  font-size: 12px;
  text-decoration: none;
}
.tools button:disabled {
  display: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
noscript {
  display: block;
  padding: 12px;
  font-size: 13px;
  background: #fff;
  color: #222;
}
.paused * {
  animation-play-state: paused !important;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
body {
  background: #f7f7f7;
  color: #202020;
  min-height: 100svh;
  overflow-x: hidden;
}
main {
  position: relative;
  z-index: 2;
  width: min(930px, 80%);
  margin: auto;
  padding-top: 43vh;
  pointer-events: none;
}
h1,
main p {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
main p {
  color: #747474;
  margin: 3px 0 38px;
}
.home {
  font-size: 15px;
  color: #666;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  pointer-events: auto;
}
.home span {
  transition: transform 0.25s;
}
.home:hover span {
  transform: translate(4px, -4px);
}
.sky {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.plane {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  opacity: 0.67;
  filter: drop-shadow(5px 12px 3px #00000012);
  transform: rotate(var(--angle));
}
.plane svg {
  display: block;
  width: 100%;
  height: auto;
}
.motion-ready .plane {
  animation: flight var(--duration) linear infinite;
  animation-delay: var(--delay);
}
@keyframes flight {
  0% {
    translate: -20vw 32vh;
    rotate: 0deg;
  }
  50% {
    translate: 10vw -5vh;
    rotate: 18deg;
  }
  100% {
    translate: 40vw -45vh;
    rotate: 0deg;
  }
}
@media (max-width: 600px) {
  main {
    width: 82%;
    padding-top: 39vh;
  }
  h1,
  main p {
    font-size: 30px;
  }
  .tools {
    right: 12px;
    bottom: 12px;
  }
  .tools a {
    font-size: 11px;
  }
  .plane {
    opacity: 0.55;
  }
}
