:root {
  color-scheme: dark;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }

body {
  background: #0a0a0f;
  color: rgba(255, 255, 255, 0.88);
  font: 500 clamp(22px, 3vw, 28px)/1.2 -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.015em;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px;
}
