* {
	padding: 0;
	margin: 0;
}

html {
	background: #000;
}

body {
	background: #0a0a0a;
	color: #fff;
	font-family: "Courier New", monospace;
	font-size: 1em;
	line-height: 2;
	max-width: 45em;
	margin: 2em auto;
	padding: 1em;
	border: .25em ridge #b30000;
	box-shadow: 0 0 20px #b30000;
}

h2 {
	color: #f66;
	font-size: 1.2em;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	background: #1a0000;
	padding: 0.5em;
	border: .1em dotted #b30000;
}

h2::before {
	content: "[";
	color: #b00;
}

h2::after {
	content: "]";
	color: #b00;
}


p {
	margin: 1em auto;
}

.ascii-header,
.whatis,
.badges,
.contact {
	text-align: center;
}

.ascii-header {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 2em auto;
}

.whatis {
	color: #ccc;
	font-style: italic;
}

.important {
	color: #ee0;
	background: #1a0000;
	border-left: 0.5em solid #ff3333;
	border-right: 0.5em solid #ff3333;
	padding: 1em;
}

.terminal {
	background: #000;
	color: #0f0;
	padding: 1em;
	border: 2px groove #333;
	box-shadow: inset 0 0 10px #000;
}

@keyframes blink {
	50% { opacity: 0; }
}

.terminal::after {
	content: "_";
	animation: blink 1s step-end infinite;
}

@keyframes pulse {
	0% { transform: rotate(-3deg) scale(1); }
	50% { transform: rotate(-3deg) scale(1.05); }
	100% { transform: rotate(-3deg) scale(1); }
}

.contact {
	font-size: 1.5em;
	color: #f00;
	letter-spacing: 0.2em;
	transform: rotate(-3deg);
	animation: pulse 2s ease-in-out infinite;
}

hr {
	color: #b00;
}

img {
	vertical-align: middle;
}

.badges {
	margin-bottom: 0;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	background: repeating-linear-gradient(
		transparent 0 2px,
		rgba(179, 0, 0, 0.1) 2px 4px
	);
	z-index: 1;
}

body > * {
	position: relative;
	z-index: 2;
}

