@media (min-width: 1025px) {
    .footerBottom{
        background-color: #11101D;
        padding: 30px;
        text-align: center;
        height: 70px;
    }
    .footerBottom p a{
        color: white;
        text-decoration: none;
        font-size: 19px;
        border-radius: 16px;
        margin: 80px;
        padding: 10px;
    }
    
    .footerBottom p a:hover{
        background: #FFF;
        transition: all 0.5s ease;
        color: #11101D;
    }
}

@media (max-width: 1025px) {
    .footerBottom p {
        text-align: center; /* Zentriere die Links */
        background-color: #11101D;
        padding: 10px;
    }

    .footerBottom p a {
        display: block; /* Macht die Links blockweise */
        margin: 5px auto; /* Fügt vertikalen Abstand zwischen den Links hinzu und zentriert sie horizontal */
        color: white;
        text-decoration: none;
        padding: 5px;
    }
}
