/* Assurez-vous que la taille du corps prend toute la hauteur de la page */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden; /* Empêche le défilement horizontal */
}

#large-header {
    position: relative;
    width: 100%;
    height: 100vh; /* Fixe la hauteur à la hauteur de la fenêtre visible */
    
    background-size: cover; /* L'image couvre toute la page */
    background-position: center; /* L'image est centrée */
    background-attachment: fixed; /* L'image de fond reste fixe lors du défilement */
    z-index: 1; /* Assurez-vous que l'image de fond est sous tout le contenu */
}

/* Ajoutez un effet au titre */
.main-title {
    position: absolute;
    color: white;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
}

/* Autres styles pour le reste du contenu */
body {
    font-family: Arial, sans-serif;
}

/* Style pour l'en-tête */
header {
    text-align: center;
    padding: 50px 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

/* Exemple de style pour un contenu supplémentaire */
#content {
    padding: 20px;
    background-color: #f4f4f4;
    margin-top: 20px;
}
