footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: #ccc;
    padding: 10px;
    width: 100vw;
    margin-top: 40px;
}

footer{
    position: relative;
    bottom: 0;
    width: 100vw;
    background: #ccc;
    text-align: center;
    padding: 10px;
}

.logo {
    width: 50px;
    height: auto;
    margin-bottom: 8px;
}

@media screen and (max-width: 768px){
    footer{
        flex-direction: column;    
        justify-content: flex-start;
    }
}