:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #111111;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 12vw, 128px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

