body {
	margin: 0;
}

body > h1 {
	margin: 0;
	padding: 10px;
	border-bottom: 1px solid black;
	font-family: monospace;
	font-variant: small-caps;
	background: hsl(0,0%,25%);
	color: white;
	text-shadow: 0px 0px 4px lime;
}

body > h2 {
	margin: 10px;
}

body > p {
	padding: 10px;
	font-family: monospace;
}

body > p:last-of-type::after {
	content: '\002588';
	animation-name: blinkanim;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
	animation-timing-function: cubic-bezier(0.0,0.1,0.0,1.0);
}

@keyframes blinkanim {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}

.err {
	color: red;
}