body{
	font-family: 'Courier', 'Times New Roman', Arial;
	max-width: 600px;
	margin: 30% auto;
	padding: 0 0 0 15%;
	font-weight: 100;
}
body::after{
	content:"typewriter";
	font-size: 100px;
	position: fixed;
	top: 40%;
	left: -10%;
	-webkit-transform: rotate(-90deg);
}
div{
	margin-top: 50px;
}

div:not(:last-child), div:last-child p:not(:first-child){
	-webkit-animation: fadein 2s;
}
@-webkit-keyframes fadein {from {opacity: 0;} to {opacity: 1;}}

div:last-child p:last-child::after{
	content: "";
	border-left: solid 1px black;
	margin-left: 1px;
	-webkit-animation: blink 1s steps(2, start) infinite;
}
@-webkit-keyframes blink {to {visibility: hidden;}}

