:root {
  color-scheme: light;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #20231f;
  background: #f2efe8;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  min-height: 100svh;
  margin: 0;
  background:
    linear-gradient(145deg, #ffffff80, transparent 50%),
    #f2efe8;
}

.preparation {
  min-height: 100svh;
  display: grid;
  place-content: center;
  gap: .8rem;
  padding: 2rem;
  text-align: center;
}

.preparation h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.5rem, 10vw, 6rem);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.055em;
}

.preparation p {
  margin: 0;
  color: #62675f;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

