/*-------- CSS for the footer --------*/

footer {
    background: #387BB1;
    position: absolute;
    width: 100%;
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.footer-classic a, .footer-classic a:active, .footer-classic a:hover, .footer-classic a:link {
    color: #ffffff;
    text-decoration: none;
}

.social-inner {
    font: 13px/1 "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    /* ---- solution - verrückter footer ( auch in scrolling-nav ) ---- */
    display: flex;
    align-items: center;
    height: 45px;
}

.social-inner:focus-visible{
    outline: 1px solid white;
}

.social-inner span {
    line-height: 45px;
}
/* --------*/
