/* === Base Styles === */
body {
  font-family: Arial, sans-serif;
  background-color: white;
  color: black;
  margin: 20px;
  transition: background-color 0.3s, color 0.3s;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

h1 {
  font-size: 2em;
}

h2 {
  color: #333;
  margin-top: 30px;
}

p {
  line-height: 1.6;
}

button {
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #ddd;
}

/* === Images (both smaller) === */
img {
  max-width: 300px;        /* limit width */
  width: 100%;             /* responsive */
  height: auto;            /* keep aspect ratio */
  display: block;
  margin: 0 auto 20px;     /* center and spacing */
  border-radius: 8px;      /* rounded corners */
}

/* === Dark Mode === */
.dark-mode {
  background-color: #121212;
  color: #f0f0f0;
}

.dark-mode h2 {
  color: lightblue;
}

.dark-mode button {
  background-color: #333;
  color: white;
  border-color: #666;
}

