/* stlyess.css — A cheerful style for quiz magic! */

body {
  background: linear-gradient(135deg, #fff3f0, #e0f7ff);
  color: #333;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  text-align: center;
  padding: 40px 20px;
  margin: 0;
}

.quiz-box {
  background: #fff;
  max-width: 500px;
  margin: auto;
  padding: 30px;
  border-radius: 20px;
  border: 4px dotted #ffa9e7;
  box-shadow: 0 0 20px #ffe8fb;
}

h1 {
  color: #c600b0;
  margin-bottom: 20px;
  text-shadow: 1px 1px #ffe0f0;
}

select, button {
  padding: 10px;
  font-size: 1rem;
  border-radius: 8px;
  border: 2px solid #f7b733;
  margin-top: 15px;
}

button {
  background: #ffd6f7;
  color: #5a005a;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease;
}

button:hover {
  background: #ffacec;
  transform: scale(1.1);
}

#result {
  margin-top: 25px;
  font-size: 1.3rem;
  color: #f9409e;
  font-weight: bold;
}