body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
}


body {
  background: rgba(0,255,0,1);
  background: -moz-linear-gradient(top, rgba(0,255,0,1) 0%, rgba(0,255,0,1) 27%, rgba(255,0,255,1) 100%);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,255,0,1)), color-stop(27%, rgba(0,255,0,1)), color-stop(100%, rgba(255,0,255,1)));
  background: -webkit-linear-gradient(top, rgba(0,255,0,1) 0%, rgba(0,255,0,1) 27%, rgba(255,0,255,1) 100%);
  background: -o-linear-gradient(top, rgba(0,255,0,1) 0%, rgba(0,255,0,1) 27%, rgba(255,0,255,1) 100%);
  background: -ms-linear-gradient(top, rgba(0,255,0,1) 0%, rgba(0,255,0,1) 27%, rgba(255,0,255,1) 100%);
  background: linear-gradient(to bottom, rgba(0,255,0,1) 0%, rgba(0,255,0,1) 27%, rgba(255,0,255,1) 100%);

}








.video-container {
    position: relative;
    max-width: calc(100% - 100px);
/*    max-height: calc(100% - 100px);*/
    margin: auto;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    object-fit: cover;
    z-index: 1;
}

#overlay-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}
