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

* {
  box-sizing: border-box;
}

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

body {
  background: #5a1d0b url("/assets/baked-beans.webp") center / cover fixed;
  color: #fffaf0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgb(37 8 0 / 38%), rgb(37 8 0 / 58%)),
    radial-gradient(circle at center, transparent 15%, rgb(20 4 0 / 24%) 100%);
  content: "";
  pointer-events: none;
}

main {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(1.5rem, 5vw, 5rem);
  place-items: center;
  text-align: center;
}

.copy {
  text-shadow: 0 0.15em 0.5em rgb(22 4 0 / 75%);
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 16vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

p {
  margin: clamp(1.25rem, 3vw, 2.5rem) 0 0;
  font-size: clamp(1.15rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.015em;
}

@media (max-width: 40rem) {
  body {
    background-attachment: scroll;
  }
}
