:root {
  --bg-color: #f0ead6;
  --text-color: #1f2a44;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.15), transparent 45%),
    var(--bg-color);
  color: var(--text-color);
  transition: background-color 600ms ease, color 300ms ease;
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 2rem;
}

.coming-soon {
  text-align: center;
  max-width: 720px;
  animation: riseIn 700ms ease-out both;
}

.kicker {
  margin: 0;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.85;
}

h1 {
  margin: 0.4rem 0 0.5rem;
  font-family: "Abril Fatface", Georgia, serif;
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: 1;
  text-transform: lowercase;
}

.subline {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 600;
  opacity: 0.9;
}

@keyframes riseIn {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
