img.hintergrundbild {
position: fixed;         /*  Die Positionierung  */
top: 0;
left: 0;
size: contain;
background-size: cover;
}


@media screen and (max-width: 1024px) {
img.hintergrundbild {
left: 50%;                /*  Ohne diese Angaben funktioniert es nicht  */
margin-left: -512px; }
}


div#inhalt {
position: relative;       /*  Diese Angabe ist extrem wichtig, da ansonsten der Inhalt nicht angezeigt wird!  */
}