:root {
  color-scheme: dark;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #101820;
  color: #f7f2df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

main {
  width: min(100%, 720px);
  padding: 32px;
  text-align: center;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  line-height: 1.05;
}

p {
  margin: 0;
  color: #9fd8b5;
  font-size: 18px;
}
