footer {
    background-color: black;
    padding: 20px;
} 

footer .footer-content {
    text-align: center;
    font-size: 15px;
}

footer .legals a {
    transition: all 0.3s ease;
}

footer .legals a:hover {
    color: var(--secondary-color);
}

footer .legals,
footer .address {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

footer .legals a {
    color: white;
    width: max-content;
}

footer .address {
    margin: 30px 0;
}

footer .address p {
    margin: 0;
}

footer .social-networks {
    margin-bottom: 30px;
}

footer .social-networks p {
    margin-bottom: 5px;
}

footer .social-networks div {
    display: flex;
    gap: 20px;
    justify-content: center;
}

footer .social-networks div a {
    display: flex;
    transition: all 0.3s ease;
}

footer .social-networks div a:hover {
    scale: 1.1;
    color: white;
}

footer .social-networks div a i {
    font-size: 30px;
    color: var(--secondary-color);
}

footer .copyright p {
    margin: 0;
    font-size: 12px;
}


    /* Tablette version */
    @media screen and (min-width: 768px) {
        footer {
            padding: 40px 40px 20px 40px;
        }

        footer .footer-content {
            font-size: 16px;
        }

        footer .legals {
            flex-direction: row;
            gap: 20px;
            justify-content: center;
        }

        footer .address {
            margin: 35px 0;
        }

        footer .social-networks {
            margin-bottom: 35px;
        }

        footer .copyright p {
            font-size: 13px;
        }
    }


        /* Desktop version */
        @media screen and (min-width: 992px) {
            footer {
                padding: 60px 60px 20px 60px;
            }

            footer .footer-content {
                font-size: 17px;
            }

            footer .legals {
                gap: 30px;
            }

            footer .address {
                margin: 40px 0;
            }

            footer .social-networks {
                margin-bottom: 40px;
            }

            footer .copyright p {
                font-size: 14px;
            }
        }