/*
	For: void.ironiq.eu
	By: Krisztian VASAS <iron@ironiq.hu>
 */

body {
	font: 15px Georgia, serif;
	color: white;
	margin: 0;
	height: 100vh;
	background: black;
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.box pre {
	display: flex;
	align-items: center;
	gap: 2px;
	color: white;
}

@keyframes cursor-blink {
	0% {
		opacity: 0;
	}
}

.box pre::after {
	content: "";
	width: 10px;
	height: 20px;
	background: #ffffff;
	display: inline-block;
	animation: cursor-blink 1.3s steps(2) infinite;
}

/*
vim: tabstop=8:softtabstop=8:shiftwidth=8:noexpandtab
 */
