/* ---- FOOTER ---- */
footer {
    background-color: var(--my-black2);
    padding: 1em 0;
    text-align: center;
}
.footerLine{
    width: 60%;
    border: none;
    height: 3px;
    background-color: rgb(36, 36, 36);
    top: 0;
    left: 50%;
}

footer ul {
    display: flex;
    justify-content: center;
    gap: 10px; /* Espacement entre les éléments */
}

footer ul li {
    display: flex;
    align-items: center;
}

footer ul li:not(:last-child)::after {
    content: " | ";  /* Ajoute le séparateur */
    margin-left: 10px;
    padding : 1em;
}


footer a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
}

footer a:hover{
    text-decoration: underline;
}