.text--static {
    padding-right: 10px;
  }
  
  .text--dynamic {
    color: #000;
    border-right: 2px solid;
    height: 100%;
    animation: blink 200ms ease infinite;
    border-bottom: 1px solid lightblue;
  }
  
  @keyframes blink {
    0%,
    100% {
      border-right-color: transparent;
    }
  
    50% {
      border-right-color: blue;
    }
  }

  .wrapper {
    height: 50px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 30px;
    line-height: 50px;
    display: flex;
    justify-content: center;
  }