footer {
    background-color: black;
    color: #f5f2f2;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    display: flex;
    justify-content: space-evenly;
    font-size: 17px;
    left: 0;
    width: 100%;
}

footer a {
    color: #1e90ff;
    text-decoration: none;
    margin: 0 10px;
}

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

footer .social-icons a:hover {
    color: #1e90ff;
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        font-size: 15px;
    }

    footer a {
        margin: 5px 0;
    }
}
@media (max-width: 480px) {
    footer {
        margin: 0;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        font-size: 15px;
    }
}