.typewriter {
	overflow: hidden;
	border-right: 0.15em solid #000;
	white-space: nowrap;
	margin: 0 auto;
	letter-spacing: 0.15em;
	animation:
	  typing 3.5s steps(40, end),
	  blink-caret 0.75s step-end infinite;
  }

  @keyframes typing {
	from {
	  width: 0;
	}
	to {
	  width: 10ch;
	}
  }

  @keyframes blink-caret {
	from,
	to {
	  border-color: transparent;
	}
	50% {
	  border-color: #000;
	}
  }