body {
    font-family: Garamond, sans-serif;
	background-color: #1e3a8a; 
  }
  .quiz-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    transition: opacity 0.5s ease;
    opacity: 1;
  }

  .options{
    color: grey;
  }
  .question {
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  .options label {
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }
  .options input[type="radio"] {
    margin-right: 5px;
    transition: transform 0.3s ease;
  }
  #submit-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  #result {
    margin-top: 20px;
    font-weight: bold;
    font-size: 18px;
    transition: opacity 0.5s ease;
    opacity: 0;
    padding-bottom: 3%;
  }
  .correct {
    color: green;
  }
  .incorrect {
    color: red;
  }

.bouton{
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  transition: transform 0.3s ease;
  text-decoration: none;
}