.container{
    display: inline-block;
  }
.typed-out{
    overflow: hidden;
    border-right: .15em solid white;
    white-space: nowrap;
    animation: 
    typing 1s steps(20, end) forwards;
    font-size: 1.6rem;
    width: 0;
}
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
}