/* Harry Potter-themed styles */
body {
  font-family: 'Harry Potter', sans-serif;
  background-color: #2c3e50;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: #f4f4f4;
}

.quiz-container {
  background-color: #f0e6d2;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  width: 400px;
  text-align: center;
  border: 5px solid #8b7355;
}

h1 {
  font-family: 'Harry Potter', sans-serif;
  font-size: 2.5rem;
  color: #ffcd27;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.question {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.options label {
  display: block;
  background-color: #8b7355;
  padding: 10px;
  border-radius: 5px;
  color: #f4f4f4;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.options label:hover {
  background-color: #6b5a4a;
}

.options input[type="radio"] {
  display: none;
}

#results {
  margin-top: 20px;
  font-weight: bold;
  color: #2c3e50;
  font-size: 1.2rem;
}

#results p {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

#restart {
  background-color: #ffcd27;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-family: 'Harry Potter', sans-serif;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#restart:hover {
  background-color: #e0b923;
}
