body {
  font-family: "IM Fell Great Primer SC", serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 1rem;
  background-color: #ffffff;
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.6;
}

header {
  background: #ffffff;
  padding: 20px;
  border: 2px solid #000000;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1em;
  display: flex;
  justify-content: flex-end;
}

footer {
  margin-top: 1em;
  background: #ffffff;
  padding: 20px;
  border: 2px solid #000000;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1em;
  display: flex;
  justify-content: flex-end;
}

main {
  background: white;
  padding: 20px;
  border: 2px solid black;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
  text-align: center;
  text-transform: uppercase;
}

p {
  text-align: justify;
  margin-bottom: 1em;
}

p > span {
  font-weight: bold;
  font-size: 1.3em;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212; /* Darker background for better contrast */
    color: #ffffff; /* White text for better contrast */
  }

  header,
  footer,
  main {
    background: #1e1e1e; /* Darker background for better contrast */
    border-color: #ffffff; /* White border for better contrast */
    color: #ffffff; /* White text for better contrast */
  }
}
