@charset "UTF-8";

<div class="fullscreen-bg">
  <video loop muted autoplay poster="img/videoframe.mp4" class="fullscreen-bg__video">
  <source src="https://drive.google.com/file/d/1QOZ8IiSnERjg7Tchn-Yr3yDhmQvKB5Cu/view" type= video/mp4
  </video> </div>
  /* Style the video: 100% width and height to cover the entire window */
  #myVideo {
    position:sticky;
    right:0;
    bottom:0;
    min-width:100%;
    min-height:100%;
  }

  video {
    object-fit:cover;
    width:100vw;
    height:100vh;
    position:fixed;
    top:0;
    left:0;
  }  
}

/* 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;
}