.quiz-container {
  background: rgba(28, 35, 76, 0.9);
  color: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  width: 100%;
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


h2 {
  margin-bottom: 15px;
}

.choices {
  list-style: none;
  padding: 0;
}

.choices li {
  margin-bottom: 10px;
}

.choices button {
  width: 100%;
  padding: 12px;
  border: 2px solid #333;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  text-align: left;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
}

.choices button:hover {
  background: #f0f0f0;
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(0, 150, 255, 0.7);
}

.choices button.correct {
  background: #27ae60;
  color: white;
  box-shadow: 0 0 15px #27ae60;
}

.choices button.wrong {
  background: #c0392b;
  color: white;
  box-shadow: 0 0 15px #c0392b;
}

#next-btn {
  margin-top: 20px;
  padding: 12px 18px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #3498db, #8e44ad);
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Orbitron', sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: none;
}

#next-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(142, 68, 173, 0.7);
}


.container {
  display: flex;
  justify-content: center;
  padding-top: 45px;
  margin-top: 22px;
}

#question {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: fadeSlide 0.6s ease-in-out;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.profilesHeader {
  text-align: center;
}
.profilesHeader h1 {
  padding-top: 68px;
}