:root {
  --bg: #fbf8f2;
}

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

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: #1a1a1a;
  background-color: var(--bg);
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem;
}

.logo {
  max-width: min(420px, 72vw);
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  animation: fadeIn 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .logo {
    max-width: 78vw;
  }
}

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