@font-face {
    font-family: 'StabosasSpecialFont';
    src: url('/static/font.ttf') format('truetype');
}

body {
	margin: 0;
	padding: 0;
	color: white;
    font-family: 'StabosasSpecialFont';
	position: relative;
	min-height: 100vh;
	z-index: 0;
}

body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background: url('/static/spacebackground.gif');
	z-index: -2;
}

body::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100vw;
	background: rgba(0, 0, 0, 0.4);
	z-index: -1;
}

h1, h2, h3, h4, h5, h6,
p, span, div, li, a, label {
	color: white;
}

a {
	color: #aad2ff;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}