.shrinkAndGrow {
  animation: scaleAnimation 5s 3;
}

@keyframes scaleAnimation{
  50% {scale: 1.1;}
}



.textGrowthAnimation1{
    animation: scaleTextAnimation1 0.5s 1;
}

@keyframes scaleTextAnimation1 {
  50% {font-size: 20px;}
}