@font-face {
  font-family: Okomito;
  src: url(Okomito-Bold.woff);
}

@import url(https://fonts.googleapis.com/css?family=Roboto:400,300);
body {
  margin: 0;
  padding: 0;
  font-family: "Okomito", sans-serif;
  background: #000;
}

.fullscreen-bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -100;
}
.fullscreen-bg__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fullscreen-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.content {
  width: 100%;
 position: fixed;
 margin: 20px;
  /*left: 50%;
  top: 50%;
  z-index: 999;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);*/*/
}
.content__title {
  font-size: 24px;
  color: white;
  margin: auto;

}
.content__title h1 {
    mix-blend-mode: difference;
}

.content__title .left {
  width: 33vw;
}
.content__title .center {
  width: 33vw;
}
.content__title .right {
  width: 33vw;
}

@media (min-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .fullscreen-bg__video {
    width: 300%;
    left: -100%;
  }
}
a {
  color: white;
}
@media (max-width: 767px) {
  .fullscreen-bg {
    background: url("Poster.png") center center/cover no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  .fullscreen-bg__video {
    display: none;
  }
}
.footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  font-size: 24px;
  margin: 15px;
}
.footer__text {
  margin: 0;
  color: #fff;
}
.footer__link {
  color: #fff;
  text-decoration: none;
}