:root {
  color: #1b1b1b;
  background: #faf9f6;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
}

main {
  width: min(100%, 42rem);
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 650;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

p {
  max-width: 34rem;
  margin: 1.5rem auto 0;
  color: #55524c;
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  line-height: 1.5;
}
