:root {
  --text-color: #1f1f1f;
  --bg-color: #f6f3ef;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg-color) 60%);
  color: var(--text-color);
  font-family: "Roboto", sans-serif;
}

.page {
  max-width: 640px;
  padding: 48px 24px;
}

h1 {
  margin: 0 0 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
}

p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

p.spaced {
  margin-top: 48px;
  margin-bottom: 48px;
}

.page-footer {
  padding: 16px;
  font-family: "Roboto", sans-serif;
}
