@media (prefers-color-scheme: light) {
  body {
    background: #ffffff;
    color: #000000;
  }
  a {
    color: #000000;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: #000000;
    color: #ffffff;
  }
  a {
    color: #ffffff;
  }
}

body {
  width: 75%;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 19px;
  transition: background-color 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased; /* Better font rendering */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 20px 0;
}

a {
  text-decoration: underline;
}