footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #503a34;
    color: bisque;
    padding: 3% 5%;
}

.footer-logo {
    animation: none;
}
/* media queries */
@media screen and (max-width: 768px) {
    footer {
        flex-direction: column;
    }  
}

@media screen and (max-width: 376px) {
    footer {
        flex-direction: column;
    } 
}