:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  color: #f9f0dc;
  background: #2b0a28;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding: clamp(2rem, 6vh, 5rem) 1.5rem;
  display: grid;
  place-items: center;
}

.brand {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(2.5rem, 6vh, 4rem);
  width: 100%;
}

.logo {
  display: block;
  width: min(24rem, 72vw);
  height: auto;
  max-height: 62svh;
  object-fit: contain;
}

h1 {
  margin: 0;
  padding-left: .28em;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-align: center;
}

footer {
  padding: 0 1.5rem max(1.5rem, env(safe-area-inset-bottom));
  color: #bfa9b9;
  font-size: .75rem;
  line-height: 1.6;
  text-align: center;
}

@media (max-height: 480px) and (min-width: 640px) {
  .brand { gap: 1.5rem; }
  .logo { max-height: 58svh; }
}
