body {
  display: flex;
  justify-content: space-around;
}

main {
  font-family: Sans;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 1000px;
}

h1, p {
  text-align: center;
}

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