* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #05050a;
  color: #e8e8f0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100dvw;
  height: 100dvh;
  display: block;
  pointer-events: none;
}

#ship {
  position: fixed;
  z-index: 0;
  left: 50%;
  top: 72dvh;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  pointer-events: none;
  will-change: transform;
}

.spacer {
  position: relative;
  min-height: 100dvh;
}

#title-group {
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 5%;
  pointer-events: none;
  will-change: transform;
  font-family: "Faster One", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#title-group h1 {
  font-size: clamp(28px, 8vw, 48px);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}

#title-group .tagline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 90dvh);
  margin: 0;
  font-size: clamp(18px, 1.5vw + 12px, 28px);
  color: #b8b8d0;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  #title-group .tagline {
    position: static;
    margin-top: 12px;
  }
}

#sentinel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
}
