:root {
  --bg: #f8e7d8;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background-color: var(--bg);
}

.site-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  padding: 1rem;
}

.logo {
  width: min(92vw, 1200px);
  height: auto;
  max-height: 78vh;
  object-fit: contain;
}

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