.impressum_wrapper{
    margin-top: var(--header_height);
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    background-color: var(--main_background_color);
}
.impressum_wrapper_text{
    width: 70%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4em;
    margin-bottom: 2em;
    background-color: white;
    border-radius: 1.25em;
}
.impressum_wrapper_header{
    width: 90%;
    margin: auto;
    padding: 0.5em 0;
}
.impressum_wrapper_header:after{
    display: block;
    content: "";
    width: 90%;
    margin: auto;
    border-top: 2px solid rgba(90, 90, 90, 0.5);
}
.impressum_wrapper_text_content{
    width: 80%;
    margin: auto;
    margin-bottom: 4em;
}
.impressum_wrapper_text_content_text{
    margin: auto;
    > h3{
        margin-left: auto;
        margin-right: auto;
    }
    > p{
        margin-left: auto;
        margin-right: auto;
        color: #333;
    }
}

@media(max-width: 768px) {
    .impressum_wrapper_text{
        width: 100%;
    }
}