
.footer-text {
    text-align: center;
    margin: 0 auto;
    padding: 10px 0;
}

.outro {
    text-align: center; /* Zentriert die Überschriften und Icons */
    margin-bottom: 20px;
}

.social-icons {
    display: flex; /* Icons nebeneinander */
    justify-content: center; /* Zentriert die Icons */
    align-items: center;
    gap: 20px; /* Abstand zwischen den Icons */
    margin-top: 10px;
}

.social-icons a img {
    width: 40px; /* Größe der Icons */
    height: 40px;
    transition: transform 0.3s ease; /* Animation bei Hover */
}

.social-icons a img:hover {
    transform: scale(1.1); /* Icons vergrößern beim Hover */
}

.social-icons a {
    text-decoration: none; /* Entfernt Unterstreichung */
}
