.typed-text {
  font-weight: 600;
  color: #2962ff;
}

.cursor {
  display: inline-block;
  background-color: #2962ff;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}

cursor.typing {
  animation: none;
}

@keyframes blink {
  0% {
    background-color: #ff6d00;
  }
  49% {
    background-color: #ffbb00;
  }
  50% {
    background-color: transparent;
  }
  99% {
    background-color: transparent;
  }
  100% {
    background-color: #ff6d00;
  }
}

