body {
	background: black;
	background-repeat: repeat;
	overflow-y: scroll;
	color: red;
	font-family: monospace;
}

hr {
	border-color: darkred;
	margin: 0;
}

a {
	font-weight: bold;
	color: red;
}

a:hover {
	text-shadow: 0 0 5px red;
}

h1 {
	text-shadow: 0 0 15px red;
	margin: 0;
	padding: 3px;
}

h2, h3, h4, h5 {
	text-shadow: 0 0 1px red;
	margin: 5px 0 5px 5px;
}

ul {
	margin: 0 5px 0 5px;
	padding-left: 15px;
}

.main-column {
	display: block;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: 80%;
}

.header {
	position: relative;
	width: 100%;
	background: black;
	margin-bottom: 10px;
	border-bottom: 2px solid darkred;
}

.container {
	position: relative;
	margin: 25px 0 25px 0;
	padding: 2px 0 2px 5px;
	background: black;
	box-shadow: 3px 3px 1px rgb(32,32,32);
	box-shadow: 3px 3px 1px rgb(32,32,32);
}

.container::before {
	z-index: -1;
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right bottom, red 0%, black 60%);
}

.center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.navigation {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	flex-wrap: wrap;
}

.navigation-link {
	user-select: none;
	cursor: pointer;
}

.navigation-link:hover {
	background: radial-gradient(darkred, transparent);
}

.navigation-link::after {
	position: absolute;
	content: '>'
}

.navigation-link::before {
	transform: translate(-100%);
	position: absolute;
	content: '<'
}

.navigation-link:hover::after {
	position: absolute;
	background: radial-gradient(darkred, transparent);
	content: '->'
}

.navigation-link:hover::before {
	transform: translate(-100%);
	position: absolute;
	background: radial-gradient(darkred, transparent);
	content: '<-'
}

.space-background {
	width: 100%;
	height: 100%;
	background-repeat: repeat;
	background-size: 200%;
	-webkit-animation: loopBackgroundMove 150s linear infinite;
	animation: loopBackgroundMove 150s linear infinite;
}

@-webkit-keyframes loopBackgroundMove {
	from { background-position: left center; }
	to { background-position: 200% center; }
}

@keyframes loopBackgroundMove {
	from { background-position: left center; }
	to { background-position: 200% center; }
}

*::-webkit-scrollbar {
	cursor: pointer;
	width: 7.5px;
	background-color: transparent;
	border-left: 1px rgb(64, 64, 64) solid;
}

*::-webkit-scrollbar-thumb {
	border-radius: 10px;
	border: 1px rgb(64, 64, 64) solid;
	background: rgb(32, 32, 32);
}

*::-webkit-scrollbar-thumb:hover {
	background: grey;
}