.Kanjut {
  position: fixed;
  background: transparent;
  left:0;
  top: 80%;
  z-index: -1;
  transform: translate(-100%, -50%) rotateZ(-20deg);
  animation: taquetquatack linear infinite 30s;
  filter: drop-shadow(1px 1px 5px black);
  width: 800px;
}

@keyframes taquetquatack {
0% {transform: translate(-100%, -50%) rotateZ(0deg);}
40% {transform: translate(100vw, -130%)}
55% {right: 0; left: none; top: 60%; transform: translate(210%, -50%) scaleX(-1);}
95%{right: 0; left: none; top: 60%; transform: translate(-100vw, -50%) scaleX(-1);}
}




body {
background: #000000 url(https://i.pinimg.com/564x/40/eb/6c/40eb6cb5f9e91a3766b9a3134203aa56.jpg) center center no-repeat !important;
background-attachment: fixed !important;
background-position: top !important;
background-size: cover !important;
}


.wrapper {
perspective: 1000px;
}
.cube {

position: relative;
left: 800px;
width: 200px;
height: 200px;
transform-style: preserve-3d;
animation: nanang 5s linear infinite;
}
.side {
position: absolute;
width: 200px;
height: 200px;
display: flex;
background: url(https://i.ibb.co/Z128Wmf/image-33.png) center center no-repeat !important;
background-attachment: fixed !important;
background-position: top !important;
background-size: cover !important;
border-radius: 9px;
place-content: center;
border: 3px solid #ffd000;
box-shadow: 0 0 200px #7e13af, 0 0 20px #7e13af, 0 0 30px #7e13af;
}

.front {
transform: translateZ(100px);
}
.back {
transform: rotateY(180deg) translateZ(100px);
}
.top {
transform: rotateX(90deg) translateZ(100px);
}
.bottom {
transform: rotateX(-90deg) translateZ(100px);
}
.left {
transform: rotateY(-90deg) translateZ(100px);
}
.right {
transform: rotateY(90deg) translateZ(100px);
}

@keyframes nanang {
0% {
transform: rotateX(0deg) rotateY(0deg);
}
100% {
transform: rotateX(360deg) rotateY(360deg);
}
}


.wrapper span {
  position: fixed;
  bottom: -180px;
  height: 50px;
  width: 50px;
  z-index: -1;
  background-color: #18191f;
  box-shadow: 0 0 50px #8800ff, 0 0 100px #53016a, 0 0 150px #8800ff, 0 0 200px #53016a;
  animation: animate 10s linear infinite;
}
.wrapper span:nth-child(1) {
  left: 60px;
  animation-delay: 0.6s;
}
.wrapper span:nth-child(2) {
  left: 10%;
  animation-delay: 3s;
  width: 60px;
  height: 60px;
}
.wrapper span:nth-child(3) {
  left: 20%;
  animation-delay: 2s;
}
.wrapper span:nth-child(4) {
  left: 30%;
  animation-delay: 5s;
  width: 80px;
  height: 80px;
}
.wrapper span:nth-child(5) {
  left: 40%;
  animation-delay: 1s;
}
.wrapper span:nth-child(6) {
  left: 50%;
  animation-delay: 7s;
}
.wrapper span:nth-child(7) {
  left: 60%;
  animation-delay: 6s;
  width: 100px;
  height: 100px;
}
.wrapper span:nth-child(8) {
  left: 70%;
  animation-delay: 8s;
}
.wrapper span:nth-child(9) {
  left: 80%;
  animation-delay: 6s;
  width: 90px;
  height: 90px;
}
.wrapper span:nth-child(10) {
  left: 90%;
  animation-delay: 4s;
}
.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.content h2 b {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #fff;
  font-family: montserrat;
  font-size: 80px;
  text-transform: uppercase;
  letter-spacing: 12px;
}
@keyframes animate {
  0% {
      transform: translateY(0);
      opacity: 1;
  }
  80% {
      opacity: .7;
  }
  100% {
      transform: translateY(-800px) rotate(360deg);
      opacity: 0;
  }
}