:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #050607;
  color: #f2f5f7;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

main {
  width: min(100% - 2rem, 42rem);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1;
}

p {
  margin: 0.35rem 0;
  color: #c7d0d8;
  font-size: clamp(1rem, 3vw, 1.35rem);
  line-height: 1.5;
}
