:root {
  --paper: #fbf9f5;
  --ink: #071c53;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.landing-page {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.centerpiece {
  width: 100%;
  max-width: min(38rem, 92vw);
  text-align: center;
}

.logo {
  display: block;
  width: min(100%, 31rem);
  max-width: 100%;
  height: auto;
  max-height: 68vh;
  max-height: 68svh;
  margin: 0 auto 1.6rem;
  object-fit: contain;
}

.centerpiece p,
.centerpiece a {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.centerpiece p {
  margin-bottom: 0.8rem;
}

.centerpiece a {
  color: inherit;
  text-decoration: none;
}

.centerpiece a:hover,
.centerpiece a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.centerpiece a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 0.35rem;
  border-radius: 0.1rem;
}

.not-found {
  display: grid;
  gap: 0.8rem;
}

.not-found p {
  margin: 0;
}

@media (max-width: 480px) {
  .landing-page {
    padding: 1.25rem;
  }

  .logo {
    max-height: 63vh;
    max-height: 63svh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
