#backgroundVideo {
  position: fixed;
  z-index: 1;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/* #cont{
  z-index: 10;
  width: 90vw;
  height: fit-content;

  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid blue;
} */

img{
  opacity: 0;
}

.invert{
  filter: invert(100%);
}


@media screen and (orientation:landscape) {
  img{
    height: 100%;
    width: auto;
    top: 50%;
    left: 50%;
    margin-top: -23%;
    margin-left: -25%;
    position: absolute;
  
    z-index: 10;
  }
}

@media screen and (orientation:portrait) {
  img{
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    margin-top: -70%;
    margin-left: -50%;
    position: absolute;
    
    z-index: 10;
  }
  
}