* {
  box-sizing: border-box;
  margin: 0;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: #faf8f5;
  color: #1f1f1f;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  text-align: center;
}

h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

p {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  color: #6b6b6b;
}
