footer {
    padding: 52px 0;
    background-color: #202020;
}
footer > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
footer > div > p {
    font-weight: 300;
    font-size: 20px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    footer > div {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        grid-area: 24px;
    }
    footer > div > a {
        max-width: 80%;
        margin-bottom: 24px;
    }
}
