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

.footer-content {
    display: flex;
}

.footer a {
    display: inline-block;
    color: white;
    text-transform: uppercase;
    font-family: Candara;
    font-weight: 400;
    letter-spacing: 1px;
}

.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;
    }
}