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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e5cda7 0%, #d8bb8b 52%, #cda973 100%);
}

main {
  padding: clamp(2rem, 8vw, 6rem);
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}
