body {
  font-family: Arial, sans-serif;
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(-45deg, #090979, #00d4ff, #7b2ff7, #ff00ff);
  background: url(./quiz2.jpg);
  background-size:cover;
  background-position: -10px;
}
.quiz-container {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  width: 600px;
  max-width: 90%;
  border: 2px solid #0ff;
  box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
  text-align: center;
  border-radius: 10px;
  color: #fff;
}
#quiz-content h2 {
  color: #0ff;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #00eaff;
}
.options {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.options label {
  display: flex;
  align-items: center;
  width: 70%; 
  min-height: 50px;
  padding: 10px 15px;
  margin: 8px 0;
  font-size: 18px;
  cursor: pointer;
  color: #fff;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid #0ff;
  border-radius: 8px;
  transition: 0.3s ease;
  box-sizing: border-box;
}

.options input[type="radio"] {
  margin-right: 12px;
  transform: scale(1.3);
}

.options label:hover {
  background: rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}
button {
  background-color: #0ff;
  color: #000;
  padding: 10px 20px;
  font-size: 16px;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s ease;
  box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}

button:hover {
  background-color: #00eaff;
  box-shadow: 0 0 20px #00eaff, 0 0 40px #0ff;
}
.result {
  font-size: 20px;
  margin-top: 20px;
  color: #00ff88;
  text-shadow: 0 0 10px #00ff88;
}
