.footer{
    padding: 30px;
    background: black;
}

.footer-content{
    display: flex;
}

.footer a{
    color: white;
    text-transform: uppercase;
    font-weight: 300;
}

.footer a:hover{
    color: #b2b2b2;
    text-decoration: none;
}

.footer .underliner{
    background: white;
    height: 4px;
    margin-bottom: 30px;
}

/* TABLET */
@media (max-width: 980px) {

}

/* PHONE*/
@media (max-width: 630px) {
    .footer-content{
        display: grid;
        justify-content: center;
        text-align: center;
    }

    .footer-content .ml-auto{
        margin-left: 0 !important;
    }
}