/* General Reset and Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Body Styling */
body {
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px;
}


.dark-mode {
  background-color: #121212;
  color: white;
}

/* Header */
header {
  background-color: #1e1e2f;
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

button {
    background-color: #444;
    color: #f0f0f0;
}

/* Section Styles */
section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

section h2 {
  color: #1e1e2f;
  margin-bottom: 15px;
  font-size: 24px;
}

section p, section ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

ul {
  padding-left: 20px;
}

/* Footer */
footer {
  background-color: #1e1e2f;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  section {
    padding: 20px 10px;
  }
}
body {
  background-color: white;
  color: black;
}

.dark-mode {
  background-color: #121212;
  color: white;
}

