.quiz-popup {
  padding: 60px 20px;
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.quiz-popup .quiz {
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  animation: 0.5s slide-up forwards;
  animation-delay: 0.1s;
  transform: translateY(50px);
}
