#animated-text {
  font-weight: bold;
  border-left: 3px solid var(--text-color); /* حالت کرسر */
  padding-left: 5px;
  white-space: nowrap;
  overflow: hidden;
  color: rgb(99, 99, 99);
  text-shadow: 0 0 1px white;
  animation: cursorText 0.75s infinite;
}

@keyframes cursorText {
  0% {
    border-color: var(--text-color);
  }

  100% {
    border-color: transparent;
  }
}