:root {
  color-scheme: dark;
  font-family: Georgia, "Times New Roman", serif;
  background: #2b0d0c;
  color: #f0d0a2;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  background: #2b0d0c;
}

main {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 2rem;
}

.brand {
  margin: 0;
}

.brand__logo {
  display: block;
  width: min(76vw, 25rem);
  height: auto;
  max-height: min(78vh, 46rem);
  max-height: min(78svh, 46rem);
  object-fit: contain;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .brand {
    animation: reveal 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

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