body {
	font-family: 'IBM Plex Mono';
	background-color: #222222;
	text-align: center;
	cursor: default;
	user-select: none;
}

header {
	font-size: 48px;
    color: #00ff00;
    margin: 12px;
}
header > div:nth-child(1) {
	animation-duration: 12s;
	animation-name: glow;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
header > div:nth-child(2) {
	font-weight: 200;
}

main {
	margin: 24px auto;
	font-size: 18px;
	color: #959595;
	width: 600px;
}
main > a {
	display: block;
	width: 600px;
	margin: 6px auto;
	border: 2px solid;
	padding: 12px;
	position: relative;
	height: 72px;
	padding-left: 108px;
	text-align: left;
	background-color: #2d2d2d;
	text-decoration: none;
}
main > a > img {
	width: 84px;
    position: absolute;
    top: 4px;
    left: 4px;
    background: #fff;
    border: #aaa solid 2px;
}
main > a > b {
	display: block;
	margin-bottom: 6px;
}

footer {
	margin: 18px;
	width: 600px;
	text-align: center;
	display: inline-block;
	color: #aaaaaa;
}
footer > a {
	display: block;
	font-size: 18px;
	margin: 6px;
}

a {
	color: #00ab00;
}

hr {
    border: #aaa solid;
	width: 800px;
}

h1, sub {
	color: #aaa;
}

@keyframes glow {
	from {
		text-shadow: 0 0 2px;
	}
	25% {
		text-shadow: 0 0 12px;
	}
	50% {
		text-shadow: 0 0 8px;
	}
	75% {
		text-shadow: 0 0 12px;
	}
	to {
		text-shadow: 0 0 2px;
	}
}
