.footer {
    height: 90px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #333333;

    font-family: Roboto, Arial;
    color: #eaeaea;
    margin-top: auto;
}

.footer .spacer-sides {
    flex: 1;
}

.footer-flexible-spacer {
    flex: 2;
}

.footer-copyright-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.copyright-icon {
    width: 20px;
    margin: 0 6px;
}

.footer-link-impressum {
    color: #eaeaea;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.25s;
}

.footer-link-impressum:hover {
    border-bottom: 1px solid #eaeaea;
    opacity: 0.75;
}

.footer-link-container .current {
    color: rgb(192, 24, 24);
}

.footer-link-container .current:hover {
    color: rgb(192, 24, 24);
    border-bottom: 1px solid rgba(192, 24, 24);
}