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

* {
  box-sizing: border-box;
}

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

main {
  width: min(92vw, 680px);
  padding: 48px 28px;
  text-align: center;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b4b45;
}
