.animate-float {
  animation: 3s ease-in-out 0s infinite normal none running float;
}

.animate-pulse {
  animation: 2s ease-in-out 0s infinite normal none running pulse;
}

.animate-spin {
  animation: 2s ease-in-out 0s infinite normal none running spin;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}/*# sourceMappingURL=animation.css.map */