:root {
  color-scheme: light dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  min-height: 100svh;
  margin: 0;
  place-items: center;
  background: #f3f1ec;
  color: #151515;
}

main {
  width: min(100%, 72rem);
  padding: clamp(2rem, 7vw, 7rem);
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: clamp(3.25rem, 12vw, 9rem);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

p {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  color: #55524d;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: -0.015em;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #11110f;
    color: #f0eee8;
  }

  p {
    color: #aaa69f;
  }
}
