/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

body {
  font-family: sans-serif;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.quiz-container {
  background-color: white;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 90%;
  max-width: 400px;
}

h1 {
  margin-bottom: 10px;
}

.question-box p {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.option {
  padding: 10px;
  border: 2px solid #333;
  border-radius: 6px;
  background-color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.2s;
}

.option:hover {
  background-color: #eee;
}

.next-btn {
  padding: 10px 20px;
  border: 2px solid #333;
  background-color: white;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.next-btn:hover {
  background-color: #eee;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.option.selected {
  background-color: #333;
  color: white;
}

.option.winner {
  background-color: lightgreen;
}

.option.wrong {
  background-color: rgb(242, 61, 61);
}
