#header-Impressum{
    width: 100%;
    height: 100vh;
    background-image: url('../images/euaiditor-Impressum.png');
    background-size: cover;
    background-position: center;
}

.container-Impressum{
    position: absolute;
    top: 35%;    /* Startpunkt bei 25% der Höhe */
    transform: translateY(-50%); /* Zieht den Container um die Hälfte seiner eigenen Höhe nach oben, um ihn exakt zu zentrieren */
    /* GRÖSSE & STYLING */
    width: 850px; /* Feste Breite oder z.B. 30% der Sektionsbreite */
    padding: 30px;  
}

.header-text{
    margin-left: 20px;
    margin-top: 250px;
    font-size: 24px;
}

.content-Impressum{
    margin-top: 50%;
    max-width: 800px;
    margin-left: 30px;
}

.content-Impressum h1{
    font-size: 3.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.content-Impressum p{
    margin-top: 30px;
    animation-delay:  0.5s;
    color: var(--text-light);
    font-size: 2.9rem;
    margin-left: 20px;
}

.anim{
    opacity: 0;
    transform: translateY(30px);
    animation: moveup 0.5s linear forwards;
}
@keyframes moveup{
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.dash-content{
    color: var(--bg-light);
    margin-left: 70px;
    margin-right: 70px;
    padding-left: 70px;
    padding-right: 70px;
}

.act-section{
    align-items: center;
    width: auto;
    margin-top: 30px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.act-section h2{
    color: #0b1c29;
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.dash-content  p{
    font-size: 1.1rem;
    font-weight: 300;
}

.liste{
    margin-left: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.act-section a {
    color: var(--bg-light);
}

.act-section a:hover {
    color: var(--brand2);
}