body {
	background-color: black;
	color: white;
	font-family: 'Trebuchet MS', sans-serif;
	background-image: url('images/bg.png');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}

h1 {
	background-color: #202020;
	text-align: center;
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	padding: 32px;
}

h2 {
	text-align: center;
	font-size: 200%;
	margin-bottom: 0px;
	margin-top: 128px;
}

.box {
	border: 2px solid white;
	font-size: 150%;
	padding: 32px;
	/*margin-left: 300px;
	margin-right: 300px;
	margin-top: 64px;
	margin-bottom: 64px;*/
	margin-left: 20%;
	margin-right: 20%;
	margin-top: 2%;
	margin-bottom: 4%;
}

.a {
	/*width:25%;*/
	display: inline-block;
	margin: auto;
}

.parent {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 25%;
}

.mono {
	font-family: monospace;
	color: white;
	background-color: #404040;
}

/* Thanks stackoverflow <3 */
img { 
    image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated;                 /* Universal support since 2021   */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
}

/* unvisited link */
a:link {
	color: #58b4ed;
}

/* visited link */
a:visited {
	color: #aa44ff;
}

/* mouse hover */
a:hover {
	color: #00cc88;
}

/* active (clicked) */
a:active {
	color: #58edca;
}

.tiny-link {
	font-size: 15px;     /* make it tiny */
	text-decoration: none;
}
