#footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap-reverse;
}

#footer > * {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: baseline;
    margin: 50px;
}

#footer > * > * {
    margin-bottom: 16px;
}


@media (max-width: 800px) {
    #footer > * {
        align-items: center;
    }

    #footer > * {
        align-items: center;
        flex: 1 1 auto;
        margin: 20px 50px;
    }
}