:root {
  --color-bg: #000000;
  --color-fg: #ffffff; }

@media (prefers-color-scheme: light) {
  :root {
    --color-bg: #ffffff;
    --color-fg: #000000; } }

html {
  font-size: 1rem;
  height: 100%; }

body {
  background-color: var(--color-bg);
  font-family: monospace;
  color: var(--color-fg);
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
  height: 100%;
  flex-direction: column;
  justify-content: center; }

h1 {
  font-family: monospace;
  font-size: 2rem;
  color: var(--color-fg);
  margin: 0; }
}

a, a:link, a:visited, a:focus, a:hover, a:active {
  color: var(--color-fg) !important;
  text-decoration: none !important; }
