@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212 !important;
  }
  h1, h2, h3, code, a, p {
    color: white !important;
  }
  footer {
    background-color: #1E1E1E !important;
  }
}

@media (max-width: 785px) {
  main {
    width: 98% !important;
  }
}

* {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
code {
  font-family: Consolas,"courier new";

  padding: 2px;
  font-size: 105%;
}
main {
  width: 75%;
  margin: 0 auto;
}
footer {
  margin-top: auto;
  text-align: center;
  background-color: rgb(240, 240, 240);
  width: 100%;
  padding: 1em 0;
}
a {
  text-decoration: none;
  color: black;
}
h1 {
  font-weight: 300;
  font-size: 2.5em;
  line-height: 1;
  color: black;
  padding: 0.5em 0;
}
h2 {
  font-weight: 200;
  line-height: 43px;
  font-size: 1.2em;
  color: black;
}
h3 {
  font-weight: 100;
  line-height: 43px;
  font-size: 1em;
  color: black;
}
p {
  font-size: 15px;
  line-height: 25px;
}