/*** optional css ***/
/* zoom in animation */
.animation-zoomIn {
    animation-name: zoomIn;
    animation-duration: 0.7s
}
@keyframes zoomIn {
    from { transform: scale(0);}
    to {transform: scale(1);}
}