/* Sicherstellen, dass das Body-Element die volle Höhe und Breite einnimmt */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Hintergrundbild und Video-Container */
.background-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('z2qs7edrnRc.jpeg') no-repeat center center fixed;
    background-size: cover;
}

/* Video im Hintergrund */
#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Play-Schaltfläche */
.play-button {
    position: absolute;
    top: 30px;
    left: 60px;
    transform: translate(-50%, -50%);
    padding: 10px 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
