/* Light mode */
:root {
  --background-color: #f4f4f4;
  --text-color: #333;
  --title-color: #333;
  --link-color: #5600b3;
  --line-color: #ccc;
  --human-color: #007bff;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #1a1a1a;
    --text-color: #e0e0e0;
    --title-color: #e0e0e0;
    --link-color: #b36bff;
    --line-color: #555;
    --human-color: #8ab4f8;
  }
}

/* Responsiveness */
@media (max-width: 600px) {
  body {
    padding: 0.55em;
  }
}

body {
  font-family: 'Arial', sans-serif;
  font-size: 1.14rem;
  line-height: 1.6;
  margin: 0 auto; /* Centers the content */
  padding: 1.1em;
  max-width: 44em; /* Limits content width */
  background-color: var(--background-color);
  color: var(--text-color);
}

h1 {
  color: var(--title-color);
  text-align: center;
  margin-bottom: 1.35em;
}

h3 {
  color: var(--human-color);
  font-weight: 400;
  font-style: italic;
}

p {
  margin-bottom: 1em; /* Space between paragraphs */
}

hr {
  border: none;
  border-top: 0.055em dashed var(--line-color); /* Dashed line for separation */
  margin: 1.65em 0;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin-left: 1.1em; /* Indent lists */
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.5em;
}

em {
  font-style: italic;
}







