html, body {
  height: 100%;
}

@media (min-width: 800px) {
  body {
    width: 70vw;
    min-width: 1000px;
    margin: 0 auto;
  }
}

* {
  font-family: sans-serif
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: black;
    color: white;
  }
  
  a {
	  color: dodgerblue;
  }
  
  a:visited {
	  color: darkorchid;
  }

  input, button {
    filter: invert(100%) hue-rotate(180deg);
  }
}
