

.site-footer-wrapper{
    padding: 20px;
    background-color: #F6F5F2;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin: 0;

}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.text-container-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.copyright-text-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-text-footer {
    display: flex;
    align-items: center;
}

.site-text-footer p,
.data-container-footer p {
    margin: 5px 0;
}

.data-container-footer {
    display: flex;
    justify-content: space-around;
    width: 40%;
    flex-wrap: wrap; /* Ermöglicht das Umfließen der Elemente */
}

.container-text-footer-phone,
.container-text-footer-email, 
.container-text-footer-github 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 10px; /* Abstand zwischen den Elementen */
}

.footer-number-icons {
    display: flex;
    flex-direction: row; 
    justify-content: center; 
    align-items: center; 
    text-align: center;
    margin-bottom: 10px; 
    gap: 10px; 
}

.footer-number-github img {
    width: 50px;
    margin-bottom: 4px;
}

.footer-text-phone-font,
.footer-text-email-font,
.footer-text-github-font {
    color: #5376b8; 
    font-size: 1.2em;
}

.footer-number-phone-font,
.footer-number-email-font {
    color: #000000; 
    font-size: 1em;
    font-weight: bold;
}

/* Responsive Design für mobile Geräte */
@media (max-width: 820px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start; 
    }

    .data-container-footer {
        width: 100%;
        justify-content: center;
    }

    .container-text-footer-phone,
    .container-text-footer-email,
    .container-text-footer-github {
        margin-bottom: 15px;
        padding: 10px;
    }

    .footer-text-phone-font,
    .footer-text-email-font,
    .footer-text-github-font {
        font-size: 1.0em; 
    }

    .footer-number-phone-font,
    .footer-number-email-font {
        font-size: 1em;
        padding: 5px;
    }
    .copyright-text-footer {
        padding: 10px;
    }

}
