body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px; /* Ajustez la hauteur selon votre image */
    background-size: cover;
    background-position: center;
}

.video-container {
    text-align: center;
    margin-top: 350px; /* Ajustez la marge en fonction de la hauteur de la bannière */
}

.cta {
    text-align: center;
    margin-top: 50px;
}

button {
    background-color: #4CAF50; /* Vert */
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}
/* Dans votre fichier style.css */
.banniere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px; /* Ajustez la hauteur selon vos besoins */
    background-image: url('votre-image.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1000; /* Pour s'assurer que la bannière reste au-dessus des autres éléments */
  }
  
  /* Média queries pour adapter la hauteur sur mobile */
  @media (max-width: 768px) {
    .banniere {
      height: 200px; /* Ajustez la hauteur pour mobile */
    }
  }