footer{
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-left, 
.footer-right{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .5em;
}

.footer-right{
    width: 40%;
    height: 50vh;

}

.footer-left li{
    color: white;
    text-align: center;
    font-weight: 300;

}

#li-title{
    margin-bottom: .3em;
    font-weight: 600;
}

.logo-footer{
    width: 200px;
    margin-bottom: 40px;
}

.copy{
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 13px;
    padding: 1em 0;
}

@media screen and (max-width: 768px) {

    footer{
        flex-direction: column;
    }
    .footer-right{
        width: 90%;
        height: 50vh;
    }
}