*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	background: black;
	color: lightgreen;
	font-family: 'Iosevka Term Web', monospace;
	font-size: 1.25rem;
	letter-spacing: 0;
	line-height: 1.65;
	padding: 1.25rem;
}

.comment { color: darkgreen; font-style: italic; }

.prompt {
	background-color: lightgreen;
	display: inline-block;
	width: 0.625rem;
	height: 1.25rem;
	line-height: 1;
	verticle-align: middle;
	animation: blink 1.2s ease infinite;
}

@keyframes blink {
	from, to { 
		background-color: lightgreen; 
	}
	50% { 
		background-color: transparent; 
	}
}
