@import url(/html/reset.css);
@import url("https://fonts.googleapis.com/css?family=Merriweather:900");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,500&display=swap");
body {
  font-family: "Merriweather", serif;
  font-size: 100px;
  line-height: 200px;
  background: rgb(76, 76, 76);
  overflow: hidden;
}

.wrap {
  width: 100vw;
  height: 100vh;
  display: flex;
}
.wrap .bg {
  width: 50%;
  height: 100%;
  z-index: 20;
}
.wrap .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.9;
}
.wrap .box {
  width: 10%;
  height: 100%;
  border-left: 1px solid #fff;
  transition: 0.35s;
}
.wrap .box p {
  opacity: 0;
  color: #fff;
  margin: auto;
}
.wrap .box video {
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 50;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 1s;
}
.wrap .box:hover {
  width: 90%;
}
.wrap .box:hover video {
  opacity: 1;
}
.wrap .box:hover p {
  opacity: 1;
}
.wrap .big_box {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.8;
  pointer-events: none;
}

.container {
  z-index: 9999;
  position: absolute;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  pointer-events: none;
}
.container div {
  position: absolute;
  mix-blend-mode: multiply;
}
.container .red {
  color: rgba(255, 0, 0, 0.7);
  -webkit-animation: animateRed 2s infinite ease alternate;
          animation: animateRed 2s infinite ease alternate;
}
.container .green {
  color: rgba(0, 255, 0, 0.7);
  -webkit-animation: animateGreen 2s infinite ease alternate;
          animation: animateGreen 2s infinite ease alternate;
}
.container .blue {
  color: rgba(0, 0, 255, 0.7);
  -webkit-animation: animateBlue 2s infinite ease alternate;
          animation: animateBlue 2s infinite ease alternate;
}

@-webkit-keyframes animateRed {
  100% {
    transform: scale(1.2, 1.2);
  }
}

@keyframes animateRed {
  100% {
    transform: scale(1.2, 1.2);
  }
}
@-webkit-keyframes animateGreen {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(10px, 10px) scale(1.2, 1.2) skewX(-2deg);
  }
}
@keyframes animateGreen {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(10px, 10px) scale(1.2, 1.2) skewX(-2deg);
  }
}
@-webkit-keyframes animateBlue {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 10px) scale(1.2, 1.2);
  }
}
@keyframes animateBlue {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 10px) scale(1.2, 1.2);
  }
}/*# sourceMappingURL=index.css.map */