.nutzungsbedingungen_wrapper{
    margin-top: var(--header_height);
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    background-color: var(--main_background_color);
}
.nutzungsbedingungen_wrapper_text{
    width: 70%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4em;
    margin-bottom: 2em;
    padding-bottom: 3em;
    background-color: white;
    border-radius: 2em;
}
.nutzungsbedingungen_wrapper_text_content{
    width: 95%;
    margin: auto;
    h3 {
        width: 95%;
        margin: 1em auto;
    }
    p {
        width: 95%;
        margin: 0.5em auto;
        color: #333;
    }
    ul > li {
        list-style-type: none;
        width: 92%;
        margin: 5px 0;
        color: #333;
    }
}

@media(max-width: 768px) {
    .nutzungsbedingungen_wrapper_text{
        width: 100%;
    }
}