* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  background: #000;
  display: grid;
  place-items: center;
}

h1 {
  color: #fff;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 700;
}
