.footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    margin-top: auto;
    height: 136px;
}

.empty-space-footer{
 width: 128px;
 margin-right: 32px;

}

.footer-logo{
    height: 96px; 
    margin-right: 32px;
}

.footer-link{
    display: flex;
    text-decoration: none;
    justify-content: center;
    text-align: center;
    color: white;
    width: 110px;
    font-size: 20px;
}

.footer-link:hover{
    font-weight: bold;
}


.impressum-datenschutz-wrapper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
   }

@media only screen and (max-width : 425px ) {


   .impressum-datenschutz-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 16px;
   }

   .impressum-datenschutz-wrapper a{
    margin: 0;
   }

   .empty-space-footer{
    display: none;
   }

   .footer-logo-div{
    display: none;
   }

   .footer{
    height: auto;
    justify-content: center;
   }

    }