:root {
  --text: #111;
  --background: #f7f3ea;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Georgia, "Times New Roman", serif;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.statement {
  max-width: 720px;
  text-align: center;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: 6rem;
  line-height: 1;
  font-weight: normal;
  letter-spacing: 0;
}

.tagline {
  margin-top: 1rem;
  font-size: 2rem;
  line-height: 1.2;
}

.concept {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
