.navbar {
    width: 100%;
    background-color: rgb(8, 127, 196);
    overflow: auto;
  }
  
  /* Navbar links */
  .navbar a {
    float: left;
    text-align: center;
    padding: 12px;
    color: white;
    text-decoration: none;
    font-size: 14px;
  }
  
  /* Navbar links on mouse-over */
  .navbar a:hover {
    background-color: rgba(0, 0, 0, 0);
  }
  
  /* Current/active navbar link */
  .active {
    background-color: #1a0761;
  }
  
  /* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels */
  @media screen and (max-width: 500px) {
    .navbar a {
      float: none;
      display: block;
    }
  }

  #myVideo {
    position: fixed;
    top: 100;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
  }
  
  /* Add some content at the bottom of the video/page */
  .content {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    padding: 10px;
  }
  
  /* Style the button used to pause/play the video */
  #myBtn {
    width: 100px;
    font-size: 14px;
    padding: 10px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
  }
  
  #myBtn:hover {
    background: #ddd;
    color: black;
  }