@keyframes blink-caret {
    from, to {
      border-color: transparent;
    }
    50% {
      border-color: #588438;
    }
  }
  @keyframes typing {
    from {
      width: 0;
    }
    to {
      width: 100%;
    }
  }

.new-word {
    border-right: 1px solid #588438;
    padding-right: 1px;
    display: inline-block;
    font-style: italic;
    color: #588438;
    animation: blink-caret 900ms step-end infinite;
}