 /* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: fixed;
  right: 0;
  left:0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/* Add some content at the bottom of the video/page */
.content-top {
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255, 0.95);
  color: #009d98;
  width: 100%;
  padding-left: 0px;
  font-family: Helvetica, sans-serif;
}



/* Style the button used to pause/play the video */
#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
}

#myBtn:hover {
  background: #ddd;
  color: black;
} 