:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #030914;
  color: #e8f5ff;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(42, 116, 170, 0.11), transparent 36rem),
    linear-gradient(180deg, #061426 0%, #030914 72%);
}

.starfield,
.day-sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.88;
}

.poem {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  place-content: center;
  padding: 2rem;
  text-align: center;
  text-shadow: 0 0 2rem rgba(112, 197, 255, 0.24);
}

h1,
p {
  margin: 0;
  font-weight: 300;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(1.35rem, 4vw, 2.25rem);
  letter-spacing: 0.32em;
  line-height: 1.35;
  text-transform: lowercase;
}

p {
  color: rgba(220, 240, 255, 0.72);
  font-size: clamp(0.78rem, 1.6vw, 0.96rem);
  letter-spacing: 0.16em;
  line-height: 1.9;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35em;
}

.site-footer {
  position: fixed;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding: 1.25rem;
  text-align: center;
}

.sky-countdown {
  color: rgba(220, 240, 255, 0.58);
  font: 400 0.67rem/1.2 ui-monospace, "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.1em;
  text-transform: lowercase;
}

.site-footer a {
  color: rgba(220, 240, 255, 0.46);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-decoration-color: rgba(220, 240, 255, 0.22);
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: rgba(232, 245, 255, 0.86);
  text-decoration-color: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  .starfield,
  .day-sky {
    opacity: 0.72;
  }
}
