.einunfall{
    background-color: rgb(var(--clr-blue));
    color: rgb(255,255,255);
    padding-block: 3rem;
    border-radius: 2rem;
}
.einunfall-headline >h1{
    color: rgb(255,255,255);
}
.einunfall-text{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 2em;
    width: 100%;
}
.einunfall-beschreibung{
    max-width: 60%;
   
}
.einunfall-beschreibung > img{
    display: none;
    float: right;
}

@media screen and (max-width:1200px) {
    .einunfall-headline >h1{
        display: flex;
        justify-content: center;
    }
    .einunfall-bild{
        display: none;
    }
    .einunfall-beschreibung > img{
        display: block;
        float: right;
        margin: 1em;
        max-width: 40%;
    }
    .einunfall-beschreibung{
        max-width: 100%;
        font-size: 1em;
    }
    
}
@media screen and (max-width:600px) {
    .einunfall-bild{
        display: none;
    }
    .einunfall-beschreibung > img{
        display: block;
        float:none;
        max-width: 70%;
        padding: 1em;
        margin-right: 0em;
    }
    .einunfall-beschreibung{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        max-width: 100%;
        font-size: 0.9em;
    }
    
}
