:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #f7f4ed;
}

* {
  box-sizing: border-box;
}

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

main {
  width: min(680px, calc(100vw - 48px));
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(52px, 10vw, 96px);
  line-height: 1;
  font-weight: 800;
}

p {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.45;
}
