/* Style général */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f2f2f2;
  color: #333;
}

/* Conteneur principal */
.container {
  max-width: 900px;
  margin: 80px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Titre */
h1 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 36px;
}

/* Description */
p {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Zone photo */
.photo {
  margin-top: 30px;
  display: block;
  margin: 20px auto;
  height: 420px;
  background-color: #e0e0e0;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #777;
}

.btn {
  padding: 12px 25px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  transition: background-color 0.3s;
  display: block;
  width: fit-content;
  margin: 30px auto;
}

.btn:hover {
  background-color: #0056b3;
}

.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
  }

.option {
  padding: 15px;
  background-color: #eaeaea;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: background-color 0.2s;
}

.option:hover {
  background-color: #d0d0d0;
}

.option.correct {
  background-color: #4CAF50;
  color: white;
}

.option.wrong {
  background-color: #e74c3c;
  color: white;
}

.answer {
  margin-top: 20px;
  font-size: 18px;
  color: #e74c3c;
  display: none;
}
.next-btn {
  margin-top: 25px;
  padding: 12px 25px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  display: none;
}

.next-btn:hover {
  background-color: #0056b3;
}

.replay-btn {
  display: block;
  margin: 25px auto;
  padding: 12px 30px;
  font-size: 18px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.replay-btn:hover {
  background-color: #218838;
}