﻿.animation{
    z-index:1200;

}
.screen-height {
    overflow: hidden;
    animation: bgColor 5s infinite alternate-reverse;
}

[data-name="mojs-shape"] svg ellipse {
    transform: scale(1);
    /*  
  filter:url('#filter');
*/
}

.burst_3 svg ellipse {
    fill-opacity: 0.15;
    fill: #ff6a00;
   
   
    animation: animFillBurst_3 5s infinite alternate-reverse;
}

@keyframes animFillBurst_3 {
    from {
        fill: #808080;
       
    }

    to {
        fill: #0B245F;
      
    }
}

@keyframes bgColor {
    from {
        background: #ff6a00
    }

    to {
        background: #ff0000
    }
}

