* {
	box-sizing: border-box;
	color: #D4D4D4;
}

body {
	min-height: 97vh;	
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background: #3A3A3A;
}

#content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 1;
}

a {
	text-decoration: none;
}

#info_link {
	margin: 0 0 20px;
	width: 100%;
}

#page_info {
	padding: 20px 10px;
	background: #474747;
	border-bottom: 3px solid #78724E;
}

h1 {
	font-family: serif;
	font-size: 1.4em;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 9px;
	text-align: center;
}

#about, #stats {
	width: 100%;
	border: 2px solid #78724E;
	border-radius: 10px;
	background: rgba(27,27,27,0.3);
	padding: 30px;
	margin-bottom: 10px;
}

#about p {
	text-align: justify;
	font-family: 'Solway', sans-serif;
	hyphens: auto;
	margin: 0 0 10px 0;
}

#social {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

#social a {
	display: flex;
	align-items: center;
	margin-right: 10px;
}

#social img {
	height: 40px;
}

#social img:hover {
	filter: opacity(50%);
}

#stats {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#stats {
	padding-bottom: 20px;
}

.stat {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}

.stat p {
	margin: 0;
}

.statkey, .statvalue {
	width: 50%;
	padding: 5px;
	border: 1px solid black;
	border-radius: 5px;
	background: black;
	font-size: 1.1em;
	letter-spacing: 1.5px;
}

.statkey {
	text-align: right;
}

.statvalue {
	background: #928A5F;
	color: black;
	font-weight: bold;
}

@media only screen and (min-width: 769px) {
	#content {width: 80%;}
	.stat {width: 50%;}
	#about p {font-size: 1.1em;}
	#social img {height: 50px;}
}