html{
	width:100%;
	background:none;
    margin: auto;
}

body {
    width: 100%%;
    margin:0 auto;
    padding:0px;
}


div#header {
    width: 100%;
    margin:auto;
    padding-bottom: 0px;
}

div#banner {
    width: 99.7%;
    border: double #1988E9;
    margin-bottom: 3px;
    text-align: center;
    border-radius: 11px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

div#index {
    width: 99.7%;
    border: double #ad956b;
    margin:auto;
    text-align: center;
    padding-bottom: 5px;
    background-image: url(img/fd/fdindex.jpg);
    background-repeat: no-repeat;
    background-size: cover; /* L'image couvre tout l'écran */
    background-position: center center; /* Centrée horizontalement et verticalement */
    background-attachment: fixed; /* Facultatif : l’image reste fixe pendant le scroll */
    border-radius: 11px;
}



#footer {
    background-image:url(img/fdfooter.jpg); ;
    padding: 20px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px; /* Espacement entre les éléments */
}

.footer-item {
    flex: 1;
    min-width: 250px; /* Largeur minimale pour chaque colonne */
}

.p4 {
    font-size: 14px;
    line-height: 1.6;
}

.a1 {
    color: #333;
    text-decoration: none;
}

.a1:hover {
    text-decoration: underline;
}


/* Media Query pour les petits écrans (tablettes et téléphones) */
@media screen and (max-width: 1024px) {
    .footer-container {
        flex-direction: column; /* Empile les éléments verticalement sur petits écrans */
        align-items: center;
    }

    .footer-item {
        text-align: center;
    }

    .social-icons a {
        font-size: 18px; /* Réduire la taille des icônes sur les petits écrans */

    }
}


