:root {
  --bg-earth: #ece4d8;
  --text-earth: #2c2017;
}

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

html, body {
  width: 100%;
  height: 100%;
  background: var(--bg-earth);
  color: var(--text-earth);
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
}

p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}
