body {
  background: #fcfefd;
  font-family: "Noto Sans", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80vh;
  padding-top: 10rem;
  justify-content: space-between;
}

h1 {
  font-family: "Noto", serif;
  color: black;
  font-size: 2.50rem;
  margin: 0.5rem;
}

ul {
  color: black;
  font-size: 1.25rem;
}

li {
  margin: 0.35rem;
}

a {
  color: #8AB361;
}

footer {
  color: black;
  margin-top: auto;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #2d302f;
  }

  h1 {
    color: white;
  }

  ul {
    color: white;
  }

  footer {
    color: white;
  }
}