@keyframes get_bigger {
  40% { scale:  1.0; transform: translate(0, 0); opacity: 1;filter: blur(0px);}
  70% { scale: 1.3; transform: translate(-75px,100px); opacity: 1;filter: blur(2px);}
  100% { scale:  1.4; transform: translate(-150px, 200px); opacity: 0;filter: blur(6px);}
}


@keyframes bg {
  0% {background: #ffffff;}
  20% {background: #ffffff;}
  40% {background: transparent;}
  70% {background: transparent;}
  100% {background: #ffffff;} 
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

