/* Style the video: 100% width and height to cover the entire window */
.videocont {
  position: fixed;
  width: 100vw;
  height: 100vw;
  z-index: -99;
}

.video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-width: 100vw;
    display:none;

}