/* Style général */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle, #ffe6e6, #ff99cc);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header et footer */
header, footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
}

header h1 {
  margin: 0;
  font-size: 18px;
}

footer p {
  margin: 0;
  font-size: 12px;
}

/* Conteneur principal */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* Image de la bande dessinée */
#comic-image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.5s ease-in-out;
}

/* Boutons */
.buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Styles responsives */
@media (max-width: 600px) {
  header h1 {
      font-size: 16px;
  }

  button {
      font-size: 14px;
      padding: 8px 16px;
  }
}
