html {
  width: 100%;
  height: 100%;
}

body {
  color:#ffffff;
  font-family: 'Yantramanav', sans-serif;
  font-size: 15px;
  font-weight: 300;
  background-size: cover;
  display: flex;
  align-items: center; 
  justify-content: center;
  background: black;
  width: 100%;
  height: 100%;
  position: relative;
}

.container {
  position: fixed;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.noize {
  background-image: url(../noise.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 130px 130px;
  width: 100%;
  height: 100%;
  animation: .2s steps(1) infinite noise;
  opacity:0.05;
}

video {
  opacity: 0.5;
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background: url("https://res.cloudinary.com/dubyjtajv/image/upload/v1593591942/omedia-frame_wmngor.jpg") no-repeat;
  background-size: cover;
  -webkit-transition: 1s opacity;
  -o-transition: 1s opacity;
  transition: 1s opacity; 
}

