:root {
  color-scheme: dark;
  --background: #050505;
  --brand-blue: #46aadc;
  --foreground: #f7f7f5;
  --muted: #929497;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
}

.splash {
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: clamp(1.75rem, 5vh, 3.5rem);
  padding: clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
}

.logo {
  display: block;
  width: clamp(18rem, 82vw, 75rem);
  height: auto;
  opacity: 0;
  animation: reveal 800ms ease-out 100ms forwards;
}

.announcement {
  width: min(32rem, 80vw);
  display: grid;
  grid-template-columns: minmax(2rem, 1fr) auto minmax(2rem, 1fr);
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  opacity: 0;
  animation: reveal 800ms ease-out 350ms forwards;
}

h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.rule {
  height: 1px;
  background-color: var(--brand-blue);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 40rem) {
  .splash {
    align-content: center;
    gap: 1.5rem;
  }

  .announcement {
    width: min(24rem, 88vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  .announcement {
    opacity: 1;
    animation: none;
  }
}