@font-face
{
	font-family: 'DWfont';
	src: url('Fonts/DWfont.eot'); 
	src: 
		local('MagicMedieval'),
		url('Fonts/DWfont.ttf')
		format('truetype');
	font-display: swap;
}

html
{
	background-color: rgba(60, 0, 0, 1);
	box-shadow: inset 0px 0px 10rem 0px black;
	min-height: 100%;
	width: 100%;
	font-size: calc(8px + 2vmin);
	line-height: 1.2;
	letter-spacing: 1px;
	color: navajowhite;
}

body
{
	padding: 0;
	margin: 0;
	display: flex;
	flex-flow: column nowrap;
	align-items: center;
}

body div.logo
{
	background-image: url("/Images/RedRuinLogo-modified.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0.05;
	position: fixed;
	height: 99vh;
	width: 99vw;
	z-index: -1;
}

header
{
	line-height: 1;
	padding: 5vmin 10vmin;
}

nav
{
	display: flex;
	flex-flow: row wrap;
	width: 90%;
	justify-content: center;
}

nav div.link
{
	color: rgba(196, 0, 0, 1);
	font-size: 5vmin;
	font-family: "DWfont", "Century Gothic", "Century", sans-serif;
	margin: 1vmin 2vmin;
	white-space: nowrap;
}

nav div.quickicons
{
	position: fixed;
	top: 1vmin;
	right: 1vmin;
	width: 6vmin;
	max-width: 10%;
	z-index: 999;
	border-style: none;
}

nav div.quickicons a:hover
{
	border: none;
	filter: hue-rotate(180deg);
}

nav div.quickicons img
{
	width: 100%;
	margin: 0;
	padding: 0;
}

main
{
	display: flex;
	justify-content: center;
	flex-flow: column nowrap;
	padding: 5vmin 10vmin;
}

footer
{
	font-size: 0.7rem;
	padding: 2vmin 0;
	opacity: 0.5;
	text-align: center;
}

h1, h2
{
	font-family: "DWfont", "Century Gothic", "Century", sans-serif;
	letter-spacing: 0.5vmin;
	font-weight: normal;
}

h1
{
	text-align: center;
	color: rgba(112, 0, 0, 1);
	margin: 0 0 -4vmin;
	font-size: 15vmin;
	text-shadow: 1px 2px 0px red, -1px -1px 0px indianred, 0px -1px 0px white, 0px 0px 5rem black;
	width: 100%;
}

h2
{
	color: goldenrod;
	text-shadow: 1px 1px 0px black;
	margin: 5vmin 0 -2vmin;
}

a
{
	text-decoration: none;
	color: rgb(255, 0, 0);
}

a:hover
{
	text-decoration: none;
	color: rgb(255, 196, 0);
	border-bottom: 1px solid rgb(255, 196, 0);
}


