body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, #aee1f9, #e3f2fd);
  color: #003366;
}

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

.hero h1 {
  font-size: 3em;
  color: #007acc;
}

.hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.3s;
}

.start-button {
  background-color: #007acc;
  color: white;
}

.donate-button {
  background-color: #ffd54f;
  color: #333;
}

footer {
  margin-top: 30px;
  font-size: 0.9em;
  color: #444;
}

.quiz-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
}

#question-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.options button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background-color: #007acc;
  color: white;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;
}

.options button:hover {
  background-color: #005f99;
}
