:root {
  color-scheme: dark;
  --bg-color: #05060d;
  --bg-gradient: radial-gradient(
    circle at 50% 40%,
    #1f2937,
    #0b1020 65%,
    #05060d 100%
  );
  --trail-color: rgba(5, 6, 13, 0.35);
  --star-saturation: 90%;
  --star-lightness: 72%;
}
@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --bg-color: #f5f7fb;
    --bg-gradient: radial-gradient(
      circle at 50% 40%,
      #eef1f7,
      #d3d8e5 65%,
      #c9d0de 100%
    );
    --trail-color: rgba(245, 247, 251, 0.65);
    --star-saturation: 70%;
    --star-lightness: 32%;
  }
}
* {
  box-sizing: border-box;
}
body,
html {
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: var(--bg-color);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
canvas {
  position: fixed;
  inset: 0;
  display: block;
}
main {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: min(22vw, 200px);
  text-shadow:
    0 0 32px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(255, 255, 255, 0.25);
  transform: translateZ(0);
}
a {
  color: inherit;
  text-decoration: none;
}
@media (prefers-reduced-motion: reduce) {
  canvas {
    display: none;
  }
  body {
    background: var(--bg-gradient);
  }
}
