:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #17211b;
  background: #f4f1e8;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

main {
  width: min(100% - 3rem, 44rem);
  padding: 4rem 0;
}

h1 {
  max-width: 10ch;
  margin: 0 0 1.5rem;
  font-size: clamp(3.5rem, 11vw, 7.5rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

a {
  color: inherit;
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-decoration-color: #8ea893;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.35em;
}

a:hover,
a:focus-visible {
  color: #315d3f;
  text-decoration-color: currentColor;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 0.4rem;
}
