/* Headerbild */
.headerbild {
    margin: 0;
    max-width: 800px;
}
.headerbild img {
    border-radius: 4px;
    width: 100%;
    height: auto;
}
.headerbild-desktop{
    display: none;
}

@media only screen and (min-width: 1024px) {
    .headerbild-mobile{
        display: none;
    }
    .headerbild-desktop{
        display: block;
    }
}