@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 24px;
}

#quiz h2 {
  font-size: 24px; /* Adjust this value to your preference */
}

button {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 60%;
  cursor: pointer;
  border: 2px solid #ccc;
  border-radius: 5px;
  background: white;
  transition: all 0.3s;
}

button:hover:not(:disabled) {
  background: #f0f0f0;
  transform: scale(1.02);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#feedback {
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}