ul{
    list-style: none;
    /* display: flex; */
    gap: 20px;
}
a{
    color: var(--seondary-text-color);
    text-decoration: none;
    position: relative;
    padding: 3px;
}
a:hover{
    color: var(--text-color);
}
a::after{
    content: "";
    height: 2px;
    width: 0%;
    background: var(--main-brand-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 150ms ease-in-out;
}
a:hover::after{
    width: 100%;
}

#impressum{
    padding: 100px 0;
    margin: 100px;
    justify-content: center;
    align-items: center;
}

@media(max-width:500px)
{
    #impressum{
        padding: 10px 0;
        margin: 40px;
    } 
    #impressum h2{
        text-align: center;
        font-size: 6vw;
    }
    #impressum h3{
        text-align: center;
        font-size: 4vw;
    }
    #impressum h1{
        text-align: center;
        font-size: 10vw;
    }
}

#datenschutz{
    padding: 100px 0;
    margin: 100px;
    justify-content: center;
    align-items: center;
}

@media(max-width:800px)
{
    #datenschutz{
        padding: 50px 0;
        margin: 20px;
    } 
    #datenschutz h2{
        text-align: center;
        font-size: 6vw;
    }
    #datenschutz h3{
        text-align: center;
        font-size: 4vw;
    }
}