/* Colour palette configuration */
:root {
  --bg-color: #caea9c;
  --text-color: #1e0439;
}

/* Reset and layout base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Lora", serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  text-align: center;
}

/* Fluid typography: minimum 2.5rem, scales with viewport, maximum 5rem */
h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  animation: fadeIn 1.2s ease-out;
}

/* Subtle fade-in transition on load */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
