body {
  font-family: Arial, sans-serif;
  background: linear-gradient(0deg, #0ce708 0%, #0062ffe2 38%, #986969 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.quiz-container {
  background: #000000cf;
  padding: 30px;
  border-radius: 10px;
  width: 500px;
  border: 1px solid black;
  text-align: center;
}

#question {
  margin-bottom: 20px;
  color: white;
  font-family: "Poppins", sans-serif;
}

#answer-buttons {
  list-style: none;
  padding: 0;
}

#answer-buttons li {
  margin: 10px 0;
}

button {
  padding: 10px 20px;
  width: 100%;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  background: #cfcac6;
  border: none;
  letter-spacing: 2px;
  
}

button.correct {
  background-color: #41ca45;
  color: rgb(0, 0, 0);
}

button.wrong {
  background-color: #c82b20;
  color: white;
}

button:disabled {
  cursor: not-allowed;
}


#score-container h3{
  color: #cfcac6 ;
}

.hide {
  display: none;
}
