body {
  font-family: "Montserrat", sans-serif;
  background-color: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
}

h1 {
  color: #2c3e50;
  margin-bottom: 20px;
}

#bouton-afficher {
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

#bouton-afficher:hover {
  background-color: #2980b9;
}

#conteneur-citation {
  margin-top: 20px;
  padding: 20px;
  border-left: 4px solid #3498db;
  background: #f0f8ff;
  border-radius: 5px;
  text-align: left;
}

#citation {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

#auteur {
  font-style: italic;
  color: #7f8c8d;
}
