/*
 * This file is part of the App package.
 *
 * (c) Yipikai <support@yipikai.studio>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

html{
  font-size: 0.645vw;
  font-family: 'Encode Sans Expanded', sans-serif;
  font-weight: 900;
  color:#FFF;
  text-decoration: none;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  display: block;
  width: 100vw;
  height: 100dvh;
  height: 100vh;
  background: #010705;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}
.container{
  z-index: 10000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  color: #E6FF29;
  font-variation-settings: "wght" 1000, "wdth" 1000, "CNTR" 0, "ital" 0, "XHGT" 0;
  font-size: 3rem;
  line-height: 3.4rem;
  text-transform: uppercase;
  transform: skew(0deg, -12deg);
}
.container span{
  display: block;
  width: 100%;
  max-width: 37rem;
}
.container .white{
  color:#FFF;
}
.yipikai{
  position: absolute;
  left:50%;
  transform: translate(-50%, 0);
  width: 16rem;
  z-index: 20000;
  top: 4rem;
}
.yipikai:hover svg{
  animation:animateBtn 2s linear infinite;
}
.yipikai svg{
  position: relative;
  fill: #FFF;
}
.contact{
  position: absolute;
  z-index: 10000;
  bottom:4rem;
  left:50%;
  transform: translate(-50%, 0);
}
.contact a{
  color:#E6FF29;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 1.8rem ;
  background: #000;
  border: 1px solid #E6FF2980;
  position: relative;
}
.contact a:hover{
  animation:animateBtn 2s linear infinite;
}
section{
  position:relative;
  overflow: hidden;
  width:100%;
  height:100%;
}
section:before{
  content:'';
  position:absolute;
  top:0;
  left: 0;
  width:100%;
  height:100%;
  background: url("../images/background.jpg") no-repeat center center;
  background-size: cover;
}
section:after{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: url("../images/background.jpg") no-repeat center center;
  background-size: cover;
  opacity:.5;
  mix-blend-mode:hard-light;
  animation:animate 3.5s linear infinite;
}
@keyframes animate{
  0%{
    left: 0;
    top: 0;
    filter:hue-rotate(0deg);
  }
  4%{
    left: 2px;
    top: 0;
  }
  8%{
    left: -2px;
    top: 0;
    filter:hue-rotate(50deg)
  }
  12%{
    left: 3px;
    top: 0;
  }
  20%{
    left: 1px;
    top: 0;
    filter:hue-rotate(-30deg)
  }
  24%{
    left: -5px;
    top: 0;
  }
  28%{
    left: -2px;
    top: 0;
    filter:hue-rotate(100deg)
  }
  32%{
    left: 0;
    top: -5px;
    filter:hue-rotate(0deg)
  }
  50%{
    left: -6px;
    top: -2px;
  }
  54%{
    left: 0;
    top: 0;
    filter:hue-rotate(10deg)
  }
  54%{
    left: 2px;
    top: 0;
  }
  62%{
    filter:hue-rotate(50deg);
    left: -2px;
    top: 0;
  }
  66%{
    filter:hue-rotate(60deg);
    left: 3px;
    top: 0;
  }
  100%{
    filter:hue-rotate(0deg);
    left: 0;
    top: 0;
  }
}

@keyframes animateBtn{
  0%{
    top: 2px;
    left: 0;
    filter:hue-rotate(0deg);
  }
  4%{
    top: -2px;
    left: 1px;
  }
  8%{
    top: 0;
    left: -2px;
    filter:hue-rotate(10deg);
  }
  12%{
    top: 1px;
    left: 1px;
  }
  13%{
    top: 0;
    left: -8px;
    filter:hue-rotate(-10deg);
  }
  14%{
    top: 2px;
    left: -1px;
    filter:hue-rotate(0deg);
  }
  28%{top: 0;
    left: -1px;
    filter:hue-rotate(30deg);
  }
  32%{
    top: 0;
    left: 0;
    filter:hue-rotate(0deg);
  }
  50%{
    top: 0;
    left: 1px;
    filter:hue-rotate(0deg);
  }
  54%{
    top: -1px;
    left: 3px;
    filter:hue-rotate(10deg);
  }
  54%{
    top: -2px;
    left: 2px;
  }
  62%{
    top: 0;
    left: 0;
    filter:hue-rotate(0deg);
  }
  63%{
    top: -8px;
    left: 2px;
    filter:hue-rotate(-30deg);
  }
  64%{
    top: 0;
    left: 0;
    filter:hue-rotate(-30deg);
  }
  70%{
    top: -2px;
    left: 1px;
  }
  74%{
    top: 0;
    left: -2px;
    filter:hue-rotate(10deg);
  }
  80%{
    top: 0;
    left: 0;
    filter:hue-rotate(10deg);
  }
  100%{
    top: 0;
    left: 0;
    filter:hue-rotate(0deg);
  }
}
@media screen and (max-width: 1346px) {
  html{
    font-size: 62.5%;
  }
  .container{
    font-size: 2.6rem;
    line-height: 3rem;
  }
  .container span, .container .white{
    max-width: 32.2rem;
  }
}