
	#typewriter {
	  font-family: monospace;
	  white-space: pre-wrap;
	  word-break: break-word;
	}
	#cursor {
	  display: inline-block;
	  animation: blink 1s step-start infinite;
	}
	@keyframes blink {
	  50% { opacity: 0; }
	}
	