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

html,
body {
  height: 100%;
}

body {
  display: grid;
  place-items: center;
  background: #111;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h1 {
  color: #fff;
  font-size: clamp(4rem, 20vw, 16rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
}
