footer{
    padding:2rem 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
footer > a{

    border-bottom: #212121 solid 3px;

}
footer >a span:nth-of-type(1),footer >a span:nth-of-type(3){
    font-weight: bold;
    font-family: "Host Grotesk", sans-serif;
}
footer > a span:nth-of-type(2){
    font-weight: bold;
    font-family: "Stalemate", cursive;
}
@media (max-width: 768px) {
    footer{
        flex-direction: column;
        align-items: center;
    }
    footer p{
        text-align: center;
    }
    .footer-media{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}