/* Minimal animation helpers */

.fadeIn{
animation:fadeIn .4s ease;
}

@keyframes fadeIn{
from{opacity:0}
to{opacity:1}
}

.bounce{
animation:bounce .4s;
}

@keyframes bounce{
0%{transform:scale(.8)}
50%{transform:scale(1.1)}
100%{transform:scale(1)}
}