/* footer.css */

/* Stile für die Fußzeile */
.KC-footer {
    background-color: #990024; /* Dunkler Hintergrund für die Fußzeile */
    color: white; /* Weißer Text */
    padding: 20px; /* Abstand innerhalb der Fußzeile */
    text-align: center; /* Zentriert den Text */
    font-size: 14px; /* Kleinere Schriftgröße */
}

.KC-footer a {
    color: white; /* Helle Farbe für Links */
    text-decoration: none; /* Entfernt die Unterstreichung */ 
}

.KC-footer a:hover {
    color: #fff; /* Weißer Text beim Hover */
    text-decoration: underline; /* Unterstreicht Links bei Hover */
}

.KC-footer .social-icons {
    margin-top: 10px;
}

.KC-footer .social-icons a {
    margin: 0 10px;
    font-size: 18px;
    color: #ddd;
}

.KC-footer .social-icons a:hover {
    color: #fff; /* Weiß bei Hover */
}