/* Style the video: 100% width and height to cover the entire window */
#theSummitVideo {
    position: absolute;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Add some content at the bottom of the video/page */
.video-content {
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    color: #f1f1f1;
    width: 100%;
    height: 100vh;
    padding: 20px;
    text-align: center;
    align-content: end;
    object-fit: cover;
}

/* Style the button used to pause/play the video */
#videoButtonPlay, #videoButtonMute {
    width: 200px;
    font-size: 18px;
    padding: 5px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    opacity: 0.6;
}

#videoButtonPlay:hover, #videoButtonMute:hover {
    background: #ddd;
    color: black;
}