:root {
  color-scheme: light;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

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

::selection { color: #fff; background: #000; }

main {
  width: min(100%, 1000px);
  margin-inline: auto;
  padding: 40px;
}

h1 {
  margin: 0 auto;
  max-width: 780px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
  text-wrap: balance;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 1px solid currentColor; outline-offset: 4px; }

@media (max-width: 650px) {
  main { padding: 28px; }
}
