 

#quiz-container {
  text-align: center;
  border: 2px solid #ccc;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  width: 100%;
}

#timer {
  font-size: 18px;
  margin-bottom: 20px;
}

#question-container {
  margin-bottom: 20px;
}

#answers {
  margin-bottom: 20px;
}

button {
  padding: 10px 20px;
  background-color: #bdc3c7;
  color: #2c3e50;
  border: none;
  border-radius: 5px;
  border: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
  color:white
}

#result {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}

/* Renk değişimini sağlamak için yeni stil ekle */
.correct {
  background-color: green;
  color: white;
}

.wrong {
  background-color: red;
  color: white;
}
