:root {
  --page-bg: #582922;
  --ink: #f8f7f2;
  --quiet: rgba(255, 255, 255, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 38%),
    var(--page-bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: clamp(2rem, 7vw, 5rem);
}

.logo {
  display: block;
  width: min(36vw, 180px);
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 1rem 2.25rem var(--quiet));
}

@media (max-width: 560px) {
  .site-shell {
    padding: 2rem;
  }

  .logo {
    width: min(48vw, 150px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .logo {
    animation: arrive 700ms ease-out both;
  }
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }

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