/* Dark Mode Reset */
body {
  background-color: #121212;
  /* Dark charcoal background */
  color: #d4d4d4;
  /* Light grey text for general readability */
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 2rem;
}

/* Heading Styling */
h1 {
  color: #ffffff;
  /* Pure white for the title to make it pop */
  margin-bottom: 0.5rem;
}

/* Paragraph Styling */
p {
  line-height: 1.6;
  /* Increases space between lines for readability */
  max-width: 600px;
  /* Prevents lines from getting too wide */
}

a {
  color: #90caf9;
  /* Light blue for any links you might add later */
  text-decoration: none;
}
