:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --fg: #111111;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c0c0d;
    --fg: #e8e8e8;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
    "Liberation Mono", monospace;
  background: var(--bg);
  color: var(--fg);
  display: grid;
  place-items: center;
  min-height: 100dvh;
}

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

h1 {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}
