footer {
    margin-top: 5em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: #555555;
    color: white;
    padding: 2em;
    width: auto;
}

.separator {
    padding-left: 1em;
    padding-right: 1em;
}

@media screen and (max-width: 1200px) {
    footer {
        display: flex;
        flex-direction: column;
        justify-content: start;
        background-color: #555555;
        text-align: center;
    }

    footer div {
        padding-top: 20px;
    }

    .separator {
        display: none;
        padding-top: 0px;
        padding-bottom: 0px;
    }
}