/***************************/
/* --- type animation --- */
/***************************/
.text {
  opacity: 0; /* Initial state: hidden */
}

.typed {
  opacity: 1; /* Visible after typing animation starts */
}

.cursor {
  display: inline-block;
  margin-left: 5px;
  font-size: 1.5rem;
  font-weight: 100;
  animation: blink 0.6s steps(2, start) infinite;
}

/* Cursor blink animation */
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}/*# sourceMappingURL=animation.css.map */