/* ============================================================
   MONOONO — stylesheet
   ============================================================ */

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

:root {
  --bg:          #f5f0b0;
  --ink:         #2d3748;
  --footer-text: #6b6840;
}

html,
body {
  height: 100%;
}

body {
  background-color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* ── Main centred area ─────────────────────────────────────── */

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ── Logo ──────────────────────────────────────────────────── */

.logo-wrap {
  width: 25vw;
  opacity: 0;
  transform: translateY(-28px);
  animation: fadeDown 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Footer ────────────────────────────────────────────────── */

footer {
  width: 100%;
  padding: 1.5rem 2rem;
  text-align: center;
}

footer small {
  color: var(--footer-text);
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  letter-spacing: 0.08em;
  font-family: 'Courier New', Courier, monospace;
}
