/* [project]/app/animations.css [app-client] (css) */
@keyframes gradient {
  0%, 100% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }
}

.animate-gradient {
  background-size: 200%;
  animation: 3s infinite gradient;
}

@keyframes draw-line {
  0% {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000px;
  }

  100% {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
  }
}

.animate-draw-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000px;
  animation: 3s ease-in-out infinite draw-line;
}

/*# sourceMappingURL=app_animations_e4e8abe2.css.map*/