.wrapper {
    height: 100vh;
    /*This part is important for centering*/
    align-items: center;
    justify-content: center;
  }
  
  .typing {
    margin-top: 25px;
    width: 29ch;
    animation: typing 2s steps(40), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    font-family: monospace;
    font-size: 2em;
    color: white;
    font-family: 'Barlow', sans-serif;
    display: inline-block;
    font-weight: bold; 
  }
  
  @keyframes typing {
    from {
      width: 0
    }
  }
      
  @keyframes blink {
    50% {
      border-color: transparent
    }
  }

  @media only screen and (max-width: 600px) {
    .typing {
      font-size: 1.1em;
    }
  }
