footer {
    margin-top: 3vw;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem clamp(1rem, 4vw, 2rem);
    color: var(--color-primary);
    background-color: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    height: 3vh;
    font-size: 90%;
}

footer a {
    color: var(--color-primary);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s, transform 0.2s;
}

footer a:hover {
    color: var(--color-secondary);
    transform: translateY(-2px);
}
/* Tablettes */
@media screen and (max-width: 1024px) {

    footer{
        height: auto;
        font-size: 85%;
        padding: 0.8rem clamp(1rem, 4vw, 1.5rem);
    }
}

/* Mobiles */
@media screen and (max-width: 600px) {

    footer{
        flex-direction: column;
        justify-content: center;
        gap: 0.6rem;
        height: auto;
        text-align: center;
        font-size: 80%;
        padding: 1rem;
    }

    footer a{
        font-size: 0.9em;
    }
}
