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

html, body { height: 100%; }

body {
  background: #ffffff;
  color: #111111;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

main {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  text-align: center;
  animation: fade-in 1.2s ease-out both;
}

img {
  display: block;
  width: 80vw;
  max-width: 880px;
  height: auto;
}

a {
  color: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
}

a:hover, a:focus-visible { text-decoration: underline; }

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  main { animation: none; }
}
