@font-face {
    font-family: 'daggersquare';
    src: url('/assets/fonts/daggersquare.woff2') format('woff2'),
        url('/assets/fonts/daggersquare.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
	color: white;
	font-family: 'daggersquare';
	text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000;
}

html,
body {
	margin: 0px;
	background-color: black;
}

a {
	text-decoration: none;
}

.content {
	padding-top: 27px;
	padding-bottom: 27px;
}

header {
	display: flex;
	align-items: center;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	text-align: center;
	font-size: 25px;
	height: 27px;
	border-bottom: 3px #990000 solid;
	background-color: #050505;
}

header a {
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-top: 3px;
	color: white;
}

header a:hover {
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-top: 3px;
	color: #990000;
}

.header_content {
	display: flex;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	width: 85%;
	top: 0;
	left: 0;
	text-align: center;
	font-size: 25px;
}

@media (pointer: coarse)  {
	#header {
		padding-top: 10px;
	}
}

@media (hover: none) {
	#header {
		padding-top: 10px;
	}
}

.header > div > a {
	padding-left: 10px;
	padding-right: 10px;
	text-shadow: 0.1em 0.1em #000000;
}

.header > .home-button {
	display: inline-block;
	float: left;
}

.header > .site-text {
	display: inline-block;
	text-align: center;
	text-shadow: 0.1em 0.1em #000000;
}

.header > .back-button {
	display: inline-block;
	float: right;
}

/* index page */

.button-container > a {
	display: flex;
	flex-flow: wrap;
	text-align: center;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: 5px;
	margin-bottom: 5px;
	padding-left: 5px;
	padding-right: 5px;
	height: 100px;
	text-decoration: none;
	border: 5px solid #990000;
	border-radius: 15px;
	font-size: 40px;
	background: linear-gradient(
		rgba(0, 0, 0, 0.75), 
        rgba(0, 0, 0, 0.75)
	), url(../assets/images/button_bg.png);
	background-size: cover;
	background-position: bottom;
}

.button-container > a:hover {
	background: linear-gradient(
		rgba(0, 0, 0, 0.3), 
        rgba(0, 0, 0, 0.3)
	), url(../assets/images/button_bg.png);
	background-size: cover;
	background-position: bottom;
	border-color: #FF0000;
}

.button-container {
	display: flex;
	flex-direction: column;
	margin-left: auto;
	margin-right: auto;
	width: 85%;
	max-width: 700px;
}

p.introduction {
	display: block;
	width: 85%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: white;
	font-size: 24px;
}

.img-pfp {
	display: flex;
	justify-content: center;
}

.img-pfp > img {
	width: 200px;
	height: 200px;
	border: 10px #990000 solid;
	border-radius: 10px;
}

h1 {
	margin: 0;
	width: 100%;
	top: 0;
	left: 0;
	display: block;
	text-align: center;
	font-size: 69px;
	color: #990000;
}