/* Conteneur principal */
.container {
  max-width: 800px;
  margin: 100px auto 80px;
  padding: 30px;
  background-color: #262b35;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative; /* ou pas du tout si pas nécessaire */
  z-index: 1; /* ou rien */
}


/* Titre secondaire */
.container h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #f9f9f9;
}

/* Paragraphes */
.container p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #dcdcdc;
}

/* Conteneur des boutons */
.btn-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Boutons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #00bcd4; /* cyan */
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #009cb5; /* cyan foncé */
}


header h1 {
  font-size: 2.5rem;
  color: #fff;
  margin: 0; /* on enlève la marge par défaut */
}
