/*took hints from from 
https://codemyui.com/pure-css-text-revealing-animation/
*/


div .magicShowup {  
  animation: showup 5s 1;
}

div .magicZoom {  
  animation: zoom 1s 1;
}


@keyframes showup  {
    0% {opacity:0;}
    20% {opacity:1;}
    80% {opacity:1;}
    100% {opacity:1;}
}


@keyframes zoom  {
  0% {transform:scale(.1);}
  100% {transform:scale(1);}
}