@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

.typewriter {
  overflow: hidden;
  white-space: nowrap;
  animation: typing 3.5s steps(40, end);
}

.fade-in-text {
  animation: fadeIn 2s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* .card {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.card .animate-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  translate: 0;
} */
/*  */

