div{
  width:100%;
  text-align:center;
 
}
body{
   background:#000;
   margin: 0;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
   user-select: none; /* Standard syntax */
}
input {
  width: 100%;
  border: 0;
}


.cnvs {
  height: 100vh;
  display: grid;
  background: rgba(0, 0, 0, 0.8);
}
.cnvs img {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 70px;
  left: 0;
  right: 0;
  opacity: 0.15;
 /* pointer-events: none;*/
}

.cnvs img:hover {
  opacity: 0.3;
}

#video-bg {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}