#mini-quiz {
  background-color: #f8e1e1;
  padding: 40px;
  text-align: center;
  font-family: Arial, sans-serif;
  position: relative;
}

#start-screen {
  position: relative;
  height: 200px;
}

#start-btn {
  background: #f9465e;
  color: #fff;
  font-weight: bold;
  font-size: 25px;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 90%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 30px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#start-btn:hover {
  background-color: #f9465e;
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  width:95%;
}

#score {
  font-size: 18px;
  margin-bottom: 10px;
}

#progress-bar-container {
  width: 100%;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#progress-bar {
  height: 15px;
  background-color: #4caf50;
  width: 0%;
  transition: width 0.4s ease;
}

.question-card {
  background: white;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  max-width: 600px;
  text-align: left;
  color: #f90694;
}

.question-card:hover {
  background-color: white;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 14px rgba(231, 76, 60, 0.2);
  border-color: #c0392b;
}

.options button {
  display: block;
  margin: 8px 0;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #f8e1e1;
  cursor: pointer;
  text-align: left;
}

.options button:hover{
  background-color: #fdb8b8;
}

.options button.correct {
  background-color: #4caf50;
}

.options button.wrong {
  background-color: #f96e7a;
}

#next-btn, #submit-btn {
  color: #140101;
  font-weight: bold;
  font-size: 20px;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 30px;
  font-family: 'Times New Roman', Times, serif;
}

#next-btn, #submit-btn::hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

#start-screen p {
    font-size: 16em;
    margin: 10px 0;
    text-decoration: hsl(from color h s l);
    
}

#result {
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  text-align: center;
}

#play-again-btn {
  background: #f9465e;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 30px;
  font-family: 'Comic Sans MS', cursive, sans-serif;
}

#play-again-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}


.quiz-banner {
  width: 100%;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 12px;
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.start-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 12px;
}

#timer {
  position: fixed;
  bottom: 30px;
  right: 40px;
  color: rgb(15, 12, 12); 
  font-size: 18px;
  font-weight: bold;
  z-index: 9999;
  pointer-events: none;
  background: none;
}

.quiz-container {
  overflow: auto;
  position: relative;
}










