/* Style the video: 100% width and height to cover the entire window */
#videoIntro {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
}

/* Add some content at the bottom of the video/page */
.videoControls {
    position: absolute;
    top: 100px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    /*width: 100%;*/
    padding: 0;
    z-index: 2;
    opacity: 0.1;
}
#navbar {
    z-index: 10;
}
/* Style the button used to pause/play the video */
#pauseBtn {
    width: 100px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
}
#soundBtn {
    width: 100px;
    font-size: 18px;
    left: 3rem;
    padding: 10px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
}

#pauseBtn:hover {
    background: #ddd;
    color: black;
}
#soundBtn:hover {
    background: #ddd;
    color: black;
}