
.hide{
    display:none;
}

.stop {
    animation-play-state: paused;
}

.paused {
    animation-play-state: paused;
}

.blur{
    filter: blur(6px);
}

.night {
    animation-name: night;
    animation-duration: 120s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
   
}

@keyframes night {

    0%
     {
        transform: translateY(0vw);
    }

   
    100% {
        transform: translateY(36.2vw);
    }
}


.dark {
    animation-name: darker;
    animation-duration: 120s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
     animation-fill-mode: forwards;
}

@keyframes darker {

    0%
     {
        filter: brightness(100%);
    }

    100% {
        filter: brightness(50%);
    }
}

.falling {
    animation-name: fall;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.falling2 {
    animation-name: fall;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}
@keyframes fall {
    from {
        transform: translateY(0vw);
    }

    to {
        transform: translateY(41vw);
    }
}

.flying {
    animation-name: fly;
/*    animation-duration: 10s;*/
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.flying2 {
    animation-name: fly2;
/*    animation-duration: 10s;*/
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    

}

@keyframes fly {
    0% {
        transform: translate(0vw, 0vw);
    }

    25% {
        transform: translate(16vw, 5vw);
    }

    50% {
        transform: translate(32vw, -5vw);
    }

    75% {
        transform: translate(48vw, 5vw);
    }

    100% {
        transform: translate(64vw, -5vw);
    }
}

@keyframes fly2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(64vw);
    }
}


.bouncing {
    animation-name: boun;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes boun {
    0% {
        transform: translateY(-4vw);
    }

    50% {
        transform: translateY(4vw);
    }

    100% {
        transform: translateY(-4vw);
    }

}



.p1{
    top: 5vw;
    left:0;
    }

.bd1{
    animation-delay:.5s;
    animation-duration:5s;
}

.p2 {

    left: 5vw;
    top: 10vw;
    }

.bd2{
    animation-delay: .2s;
    animation-duration: 9s;
}


.p3 {
    top: 15vw;
    
}

.bd3{
    animation-delay: .3s;
    animation-duration: 10s;
}

.p4 {
    left: 5vw;
    top: 20vw;
   }

.bd4{
    animation-delay: 0.1s;
    animation-duration: 7s;
}

.p5 {
    
    top: 25vw;
}

.bd5{
    animation-delay: .5s;
    animation-duration: 6s;
}


.pY0 {
    top: -5vw;
}

.pX1 {
    top: -5vw;
    left: 15vw;
    }

.pX2 {
    top: -5vw;
    left: 22vw;
   
}

.pX3 {
    top: -5vw;
    left: 29vw;
}

.pX4 {
    top: -5vw;
    left: 36vw;
   }

.pX5{
    left: 43vw;
    top: -5vw;
    }

.pX6{
    left: 50vw;
    top: -5vw;
    }


.ingd1{
    animation-delay: .5s;
    animation-duration: 5s;
}

.ingd2{
    animation-delay: 1s;
    animation-duration: 3s;
}

.ingd3{
    animation-delay: .7s;
    animation-duration: 3.5s;
}

.ingd4{
    animation-delay: 0s;
    animation-duration: 4.5s;
}

.ingd5{
    animation-delay: 1.2s;
    animation-duration: 5.5s;
}

.ingd6{
    animation-delay: 2s;
    animation-duration: 4s;
}


.turn{
    animation-name: turn;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

@keyframes turn {
    0% {
        transform: scale(1);

    }


    80% {
        transform: scale(2) rotate(720deg);
    }
}

.scale{
    animation-name: scale;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

@keyframes scale {
    0% {
        transform: scale(1) translateX(0);

    }


    60% {
        transform: scale(2.5) rotate(45deg) translateX(0);
        
    }
    
    100%{
      transform: translateX(-38vw);  
    }
}

.scale2{
    animation-name: scale2;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

@keyframes scale2 {
    0% {
        transform: scale(1) translateX(0);

    }


    60% {
        transform:   scale(5.5)  rotate(-45deg) translateX(0);
        filter: brightness(120%);
    }
    
    100%{
      transform: translateX(-38vw);  
    }
}

.mark{
    animation-name: mark;
    animation-duration: .5s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    transform-origin: left;
}

@keyframes mark {
    0% {
        transform: scale(.01) ;

    }
        
    100%{
      transform: scale(1);  
    }
}


.pulse:hover {
    animation-name: pulse;
    animation-play-state: running;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    transform: scale(1);
}


@keyframes pulse {
    0% {
        transform: scale(1);

    }


    80% {
        transform: scale(1.1);
    }
}

.pulse2:hover {
    animation-name: pulse2;
    animation-play-state: running;
    animation-duration: .1s;
    animation-iteration-count: 1;
    animation-fill-mode:forwards;
    animation-timing-function: linear;
    }


@keyframes pulse2 {
    0% {
        transform: scale(1);

    }


    100% {
        transform: scale(1.05);
        filter: drop-shadow(0px 2px 2px black)
    }
}



.gameover{
    animation-name: gameover;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-delay:1s;
    animation-timing-function:cubic-bezier(.35,.79,.5,1.42);
    animation-fill-mode: forwards;
    
}

@keyframes gameover {
    0% {
        transform: translateY(0vw);

    }


    100% {
        transform: translateY(26vw);
    }
}

