html, body {
  background: #f40;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
h1 {
  font-family: "Arial Black", "Franklin Gothic Medium", Helvetica, Arial, sans;
  color: white;
  font-size: 20vw;
}
.typed-cursor{
	opacity: 1;
	-webkit-animation: blink 0.7s infinite;
	-moz-animation: blink 0.7s infinite;
	animation: blink 0.7s infinite;
}
@keyframes blink{
	0% { opacity:1; }
	50% { opacity:0; }
	100% { opacity:1; }
}
@-webkit-keyframes blink{
	0% { opacity:1; }
	50% { opacity:0; }
	100% { opacity:1; }
}
@-moz-keyframes blink{
	0% { opacity:1; }
	50% { opacity:0; }
	100% { opacity:1; }
}