#star1_mc image,
    #star2_mc image {
        animation-name: star1_ani;
        animation-duration: 2s;
        animation-timing-function: ease-in;
        animation-iteration-count: infinite;
        animation-direction: alternate;

    }

    @keyframes star1_ani {
        0% {

            opacity: 0.5;
            transform: scale(0.5);
        }



        50% {

            opacity: 1;
            transform: scale(1);

        }



        100% {

            opacity: 0.5;
            transform: scale(0.5);

        }
    }
  #star3_mc image {
        animation-name: star3_ani;
        animation-duration: 2s;
        animation-timing-function: ease-in;
        animation-iteration-count: infinite;
        animation-direction: alternate;
        animation-delay: 0.3s;
    }

    @keyframes star3_ani {
        0% {

            opacity: 0.5;
            transform: scale(0.5);
        }



        50% {

            opacity: 1;
            transform: scale(1);

        }



        100% {

            opacity: 0.5;
            transform: scale(0.5);

        }
    }
      #tax_mc image {
        animation-name: tax_ani;
        animation-duration: 1s;
        animation-timing-function: ease-in;
        animation-iteration-count: infinite;
        animation-direction: alternate;
    }

    @keyframes tax_ani {
        0% {
            transform: scale(1);
        }



       50% {
            transform: scale(1.05);
        }


        100% {
            transform: scale(1);

        }
    }
        #gun_mc image {
        animation-name: gun_ani;
        animation-duration: 2.5s;
        animation-timing-function: ease-in;
        animation-iteration-count: infinite;

    }

    @keyframes gun_ani {
        0% {
            transform: translate(0px, 0px) rotate(0deg);
        }

        42% {
            transform: translate(0px, 0px) rotate(0deg);
        }

        50% {
            transform: translate(0px, -2px) rotate(5deg);
        }

        60% {
            transform: translate(0px, 0px) rotate(0deg);
        }

        65% {
            transform: translate(0px, 0px) rotate(0deg);
        }

        100% {
            transform: translate(0px, 0px) rotate(0deg);
        }
    }

    #earth_mc image {
        animation-name: earth_ani;
        animation-duration: 5s;
        animation-timing-function: ease-in;
        animation-iteration-count: infinite;

    }

    @keyframes earth2_ani {
        0% {
            transform:rotate(0deg);
        }

        100% {
            transform:rotate(360deg);
        }
    }


    #robot_mc{
        transform-origin: bottom;
        animation-name: robot_ani;
        animation-duration: 3.5s;
        animation-timing-function: ease-in;
        animation-iteration-count: infinite;

    }

    @keyframes robot_ani {
        0% {
            transform: translate(-5px, 5px) rotate(0deg);
        }



        30% {
            transform: translate(0px, 0px) rotate(-0.1deg);
        }

        40% {
            transform: translate(0px, 0px) rotate(0deg);
        }

        45% {
            transform: translate(0px, -5px) rotate(0deg);
        }

        50% {
            transform: translate(0px, 0px) rotate(0deg);
        }

        100% {
            transform: translate(-5px, 5px) rotate(0deg);
        }
    }