/* From: https://github.com/lgarron/minimal-html-style */

html {
  font-family: -apple-system, Roboto, Ubuntu, Tahoma, sans-serif;
  font-size: 1.25rem;
  padding: 2em;
  display: grid;
  justify-content: center;
}

body {
  width: 100%;
  max-width: 40em;
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  html {
    background: #000d;
    color: #eee;
  }

  a {
    color: #669df5;
  }

  a:visited {
    color: #af73d5;
  }
}
