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

* {
  box-sizing: border-box;
}

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

main {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 32px;
}

img {
  display: block;
  object-fit: contain;
}

h1 {
  margin: 0;
  font-size: clamp(1.35rem, 5vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
