body {
  margin: 0;
  padding: 0;
  background-color: #dff6f7;
  position: relative;      
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/background.svg);
  background-size: auto;
  background-position: bottom;
  background-repeat: repeat-x;
  filter: blur(4px);
  opacity: 0.1;
  z-index: 0;
}
header {
  width: calc(100% - 20px);
  height: 50px;
  text-align: center;
  padding: 10px;
  position: relative;
  z-index: 2;
  top: 0;
}
header .logo {
  width: auto;
  height: 100%;

}
.container {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  height: calc(100vh - 70px);
  min-height: calc(100vh - 70px);
  position: relative;
  z-index: 1;
}
.content {
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  margin: auto;
  margin-top: 40px;
  display: flex;
  align-content: center;
  justify-content: center;
}
.video {
  width: auto;
  height: 100%;
  max-width: 100%;
  background-color: #f0ead9;
}

/* 0 - 1200 */
@media screen and (max-width: 1200px) { 
  .video {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    background-color: transparent;
  }
}