/* Footer  */
#footer {
    width: 100%;
    text-align: center;
    background: black;
    display: flex;
    justify-content: space-evenly;
    padding: 20px;
    font-size: 16px;
    color: #fff;
    font-family: sans-serif;
    position: absolute;
    bottom: 0;
}

#footer a {
    font-size: 16px;
    color: orangered;
}


@media (max-width: 668px) {
    #footer {
        flex-direction: column;
        bottom: -10px;
    }

    #footer div {
        margin-top: 5px;
    }
}