/** Footer */
.footer {
    background-color: #006eff;
}

/** Info Content Footer */
.footer-info-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-info-content-logo {
    text-align: center;
}

/** Info Content Social Media Footer */
.footer-social-media {
    margin-right: 100px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/** Info Content Links Footer */
.footer-links ul {
    margin: 0;
}

.footer-links ul li {
    padding: 5px;
}

.footer-links ul li a {
    font-weight: bold;
    color: #FFFFFF;
}

.footer-links ul li a:hover {
    text-decoration: underline solid #FFFFFF 20%;
}

/** Copyright Content Footer */
.footer-copyright-content {
    color: #FFFFFF;
    font-weight: bold;
}

.footer-copyright-divider {
    height: 2px;
    width: 80%;
    margin: 0px auto;
    background-color: #FFFFFF;
}

.footer-copyright-text {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
}

/** Divider Footer */
.footer-divider {
    height: 4px;
    width: 100%;
    background-color: #FFFFFF;
}

/** Wenn Footerbreite erreicht */
@media screen and (max-width: 478.03px) {
    .footer-social-media {
        margin: 0px;
    }

    .footer-info-content {
        flex-direction: column;
    }

    .footer-links {
        margin-bottom: 20px;
    }
}