footer{
    width: 100%;
    background-color:var(--bleu);
    display: flex;
    flex-direction: column;
    text-align: center;
    row-gap: 1.5rem;
    padding:16px 0;
    font-size: 0.9rem;
    color: white;
}

#footer__infosComite{
    display: flex;
    flex-direction: column;
}

#footer__social{
    display: flex;
    column-gap: 20px;
    justify-content: center;
}

.footer__social--image{
    width: calc(30px + 0.2vw);
}

#footer__lien{
    display:flex;
    justify-content: center;
    column-gap: 10px;
}

.footer__lien--a{
    color: white;
}

.footer__lien--a:hover,
.footer__lien--a:focus {
    text-decoration: underline;
    color: #002F6C;
}

.footer__lien--a:focus {
    outline: 2px solid #000; /* focus visible */
    outline-offset: 2px;
}