/* This config is for limited use relative to typing text */

@import url('https://fonts.cdnfonts.com/css/futura-pt');

.container {
  display: inline-block;
}

.typing-text {
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid white;
  font-size: 5vw;
  animation: typing 3s steps(20, end) forwards;
  text-shadow: 0px 0px 3px white;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
  }
}
