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

html {
  height: 100%;
}

body {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #e0e0e0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  text-align: center;
  padding: 2rem;
}

h1 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.6;
  color: #a0a0a0;
}
