body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Verhindert das normale Scrollen der Seite */
    background-color: #000; /* Hintergrundfarbe, falls das Video nicht sofort lädt */
}

#immoVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Stellt sicher, dass das Video den Bereich ausfüllt, ohne das Seitenverhältnis zu verzerren */
    object-position: center top; /* Aligns video content to the top when cropped vertically */
}
