

footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #181715;
    padding: 20px 0;
}
img.logo_weiß {
    height: 90px;
    width: auto;
}

footer a {
    text-decoration: none;
    color: white;
}

footer a:hover{
    color: #f39201;
}

.rechtliches {
    display: flex;
    gap: 20px;
}

@media (max-width: 500px){
    footer {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #181715;
        padding: 20px 0;
        flex-direction: column-reverse;
    }
    .rechtliches {
        display: flex;
        gap: 20px;
        flex-direction: row;
        font-size: 13px;
    }
}