.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(img/image\ \(43\).png) 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;
    }
  }


  
.container1{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    /* add 3d representation to the container div element */
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.container1 .item{
    width: 10rem;
    height: 20rem;
    /* add brightness animation effect */
    transition: 0.5s;
    filter: brightness(0);
    cursor: pointer;
}

.container1 .item:hover{
    filter: brightness(1);
    transform: translateZ(200px);
}

/* add hover animation to the right item */
.container1 .item:hover + *{
    filter: brightness(0.6);
    transform: translateZ(150px) rotateY(40deg);
}

.container1 .item:hover + * + *{
    filter: brightness(0.4);
    transform: translateZ(70px) rotateY(20deg);
}

/* for left of the hover */
/* +* represent the right element but for left we don't have any thing like this */

.container1 .item:has(+ *:hover){
    filter: brightness(0.6);
    transform: translateZ(150px) rotateY(-40deg);
}

.container1 .item:has(+ * + *:hover){
    filter: brightness(0.4);
    transform: translateZ(70px) rotateY(-20deg);
}

.item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.box{
    position: absolute;
    width: 53rem;
    height: 25rem;
    cursor: pointer;
}
.bg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 600px;
    background-image: url("img/5131531464.png");
    background-size: cover;
    transition: 1s;
    border-radius: px;
    box-shadow: 0 10px 10px;
}

.box:hover .bg{
    transform: perspective(20px) rotateX(2deg) translateY(-50px);
}

.bird{
    position: absolute;
    left: 600px;
    width: 53rem ;
    height: 25rem;
    background-size: 100%;
    background-repeat: no-repeat;
    animation: gifAnimation 2s linear infinite;
    animation-play-state: paused!important;
    transition: 1s;
}

.box:hover .bird{
    animation-play-state:running!important;
    transform: translateY(-200px) translateX(-10px);
}

@keyframes gifAnimation{
    from{
        background-image: url("img/ninin.png");
    }
    to{
        background-image: url("img/ninin.png");
    }
}

/*kwtwk*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.container1{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    /* add 3d representation to the container div element */
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.container1 .item{
    width: 10rem;
    height: 20rem;
    /* add brightness animation effect */
    transition: 0.5s;
    filter: brightness(0);
    cursor: pointer;
}

.container1 .item:hover{
    filter: brightness(1);
    transform: translateZ(200px);
}

/* add hover animation to the right item */
.container1 .item:hover + *{
    filter: brightness(0.6);
    transform: translateZ(150px) rotateY(40deg);
}

.container1 .item:hover + * + *{
    filter: brightness(0.4);
    transform: translateZ(70px) rotateY(20deg);
}

/* for left of the hover */
/* +* represent the right element but for left we don't have any thing like this */

.container1 .item:has(+ *:hover){
    filter: brightness(0.6);
    transform: translateZ(150px) rotateY(-40deg);
}

.container1 .item:has(+ * + *:hover){
    filter: brightness(0.4);
    transform: translateZ(70px) rotateY(-20deg);
}

.item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}