@keyframes pulse {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }
.pulse {
  animation-iteration-count: infinite;
  animation-name: pulse;
  animation-duration: 1s;
  animation-fill-mode: both; }

.talking {
  animation: talking 1s infinite; }
@keyframes talking {
  0% {
    transform: rotate(0deg); }
  50% {
    transform: rotate(25deg); }
  100% {
    transform: rotate(0deg); } }

/*# sourceMappingURL=animation.css.map */
