:root {
  --lavender: #d8b7dd;
  --cobalt: #0047ab;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--lavender);
  color: var(--cobalt);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
}

.appreciation-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 2rem 1rem;
}

.kirby-hero {
  width: min(90vw, 720px);
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(47, 31, 71, 0.22);
}

.appreciation-message {
  margin: 0;
  color: var(--cobalt);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
