
html, body {

  margin: 0px;
  padding: 0px;
  overflow: hidden;
  
}

.container_temp {
  
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.40);
  
}

.container_temp video {
  
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  
  transform: translate(-50%,-50%);
  
  z-index: -1;
  
}

/****** @Media ******/


@media (min-aspect-ratio: 16/9) {
  
  .container_temp video {
    
    width: 100%;
    height: auto;
  }
  
}

@media (max-aspect-ratio: 16/9) {
  
  .container_temp video {
    
    width: auto;
    height: 100%;
  }
  
}

/*@media only screen and (max-width: 1180px) {
  
  .container_temp video {

    position: fixed;
    background-size: cover;
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;

  }

} */






/* .container {

  display: block;
  width: 100%;
  height: 2200px;

  background: url(../img/dronomatik.png) center top no-repeat;
}*/