.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--beige);
    justify-content: space-between;
    padding: 64px 116px;
    color: var(--grey);
}

.footer-logo, .footer-interesting-facts, .footer-social {
    margin-bottom: 56px;
}

.footer-impressum {
    margin-bottom: 40px;
    text-align: center;
}

.footer-interesting-facts {
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
}

.footer-instagram {
    margin: 0 60px;
}

.footer-rights {
    font-family: 'Source Sans Pro';
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
}

@media screen and (min-width: 900px) {
    .footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 30px 96px 6px 96px;
    }

    .footer-logo {
        margin-bottom: 14px;
    }

    .footer-right {
        display: flex;
        height: 50%;
        margin-top: 50px;
    }

    .footer-bottom {
        width: 150px;
    }

    .footer-social {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .footer-instagram {
        margin: 0;
    }

    h4.footer-impressum {
        margin-right: 56px;
    }
    
    h4.footer-interesting-facts {
        margin-right: 56px;
    }
    
    div.footer-rights {
        margin-top: 35px;
    }
}