body
{
	background: url("../images/background.png");
	background-color: rgb(8, 8, 16);
	font-family: sans-serif;
	margin: auto;
	color: rgb(192, 192, 192);
}

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

a:hover
{
	color: rgb(0, 192, 255);
	text-decoration: underline;
}

h1
{
	color: rgb(224, 224, 224);
	font-family: 'Roboto Condensed', sans-serif;
	text-shadow: 1px 1px 2px black, 0px 0px 1rem black, 0px 0px 0.2rem black;
}

h1 a:hover
{
	text-decoration: none;
}

nav
{
	margin-top: 1rem;
	margin-bottom: 1rem;
}

ul.navbar
{
	display: flex;
	list-style-type: none;
	background: rgba(64, 64, 64, 0.5);
	margin: 0rem;
	padding: 0rem;
	justify-content: space-around;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: bold;
}

ul.navbar li
{
	font-size: large;
	margin: 0.5rem 0rem;
}

ul.navbar li a
{
	color: rgb(160, 160, 160);
}

ul.navbar li a:hover
{
	color: white;
}

ul.navbar li a.active
{
	color: white;
}

header
{
	text-align: center;
	margin: 3rem 1rem;
	margin-top: 1rem;
}

header a
{
	filter: saturate(100%);
	transition: filter 0.5s;
}

header a:hover
{
	filter: saturate(125%);
}

#logo
{
	max-width: 100%;
}

main
{
	display: block;
	max-width: 1280px;
	margin: auto;
}

main.blog
{
	display: flex;
	flex-direction: column;
	align-items: stretch;
	max-width: 700px;
	padding: 2rem;
}

.game-list
{
	display: flex;
	margin: auto;
	margin-bottom: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

.game
{
	text-align: center;
	margin: 1rem 2rem;
}

.game img
{
	box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.25);
	transition: box-shadow 0.5s;
}

.game img:hover
{
	box-shadow: 0 0 1rem 0.1rem rgba(0, 128, 255, 0.5);
}

.game a
{
	text-shadow: 1px 1px 2px black, 0px 0px 1rem black, 0px 0px 0.2rem black;
	font-size: 0.9rem;
}

.game .date
{
	font-size: 0.8rem;
	margin-top: 0.25rem;
}

.small
{
	max-width: 100px;
}

article
{
	margin: 1rem 0rem;
	padding: 1rem;
	background-color: rgb(16, 16, 16);
	box-shadow: 0 0 1rem 0.2rem rgb(0, 0, 0);
}

article.bright
{
	margin: 0.5rem 0rem;
	color: black;
	background-color: rgb(224, 224, 224);
}

article h2
{
	font-size: large;
	margin-top: 0rem;
	font-weight: bold;
	border-bottom: 1px dotted rgb(0, 128, 255);
}

article h2 a:hover
{
	text-decoration: none;
}

article p
{
	color: rgb(224, 224, 224);
	text-align: justify;
	margin: 1rem 1rem;
	margin-bottom: 2rem;
}

article p.important
{
	margin: 2rem;
	text-align: center;
	font-weight: bold;
}

article p.important.success
{
	color: rgb(0, 255, 64);
}

article p.important.failure
{
	color: rgb(255, 0, 64);
}

article.bright p
{
	color: black;
}

article .date
{
	margin: 3rem 1rem 0rem;
	text-align: right;
	font-size: x-small;
}

article .center
{
	display: block;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
	text-align: center;
}

article form
{
	background: rgb(8, 8, 8);
	padding: 2rem;
	border-radius: 20px;
	max-width: 100%;
	margin: 1rem;
}

.blognav
{
	display: flex;
	margin-top: 2rem;
	justify-content: space-between;
}

footer
{
	margin-top: 3rem;
	margin-bottom: 1rem;
	text-align: center;
}

.social
{
	margin: 2rem auto;
}

.social a
{
	bottom: 0rem;
	filter: saturate(50%);
	transition: bottom 0.1s linear, filter 0.5s;
}

.social a:hover
{
	position: relative;
	filter: saturate(100%);
	bottom: 0.2rem;
}
