body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background:linear-gradient(rgb(208, 255, 0),rgb(0, 109, 128)); /* Updated background color */
  transition: background-color 0.5s ease-in-out; /* Smooth transition effect */
}

#quiz-container {
  max-width: 600px;
  width: 100%;
  background: #044d5a;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  box-sizing: border-box;
  color:#fff;
}

#question {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bolder;
}

#options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.option {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease-in-out;
}

.option:hover {
  background-color: #f0f0f0;
}

#result {
  margin-top: 20px;
  font-weight: bold;
  font-size: 18px;
  color: #4CAF50;
}