﻿body {
	margin: 0 auto;
	background-image:url("../img/bg.png");
	background-repeat:repeat;
	font-family: 'Open Sans', sans-serif;
}

/****************
	Header
*****************/

.header {
	width: 100%;
	height: 200px;
	padding: 30px 0;
	background: #131313;
	text-align: center;
	font-size: 26px;
	color: #fff;
}

#logo {
	height: 70%;
}

/****************
	Menu
*****************/

.menu {
	display: block;
	margin-top: 30px;
	margin-bottom: 30px;
	max-width: 100%;
	font-size: 18px;
	text-align: center;
}

.menu ul {
	overflow: hidden;
	max-width: 1000px;
	padding: 0;
	margin: 0 auto;
}

.menu li {
	display: inline;	
	list-style-type:none;	
}

.menu li a {
	text-align: center;
	display: inline-block;
	width: 28%;
	padding: 8px;
	margin: 5px;
	font-weight: bold;
	background-color: #131313;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li a:hover {
	background-color: #0099cc;
}

/****************
	Game info
*****************/

.gameinfo {
	padding: 0 10px;
	display: block;
	margin: 0 auto;
	margin-bottom: 50px;
	max-width: 900px;
	min-width: 30%;
	font-size: 24px;
}

.gameinfo h1 {
	border-bottom: 5px solid #131313;
}

.gameinfo #banner {
	width: 100%;
}

.gameinfo #store {
	padding-top: 10px;
	border-top: 2px solid #131313;
}

/****************
	Footer
*****************/

.footer {
	display: block;
	padding: 30px 0;
	color: #fff;
	width: 100%;
	background: #131313;
	margin-top: 80px;
}

.footer #content{
	display: block;
	margin: 0 auto;
	max-width: 900px;
	min-width: 30%;
}

.footer #content #copyright {
	display:inline-block;
	float: right;
}

.footer #content #links {
	display:inline-block;
}

.footer #content #links a {
	margin: 0 10px;
	color: #fff;
	text-decoration: none;
}

.footer #content #links a:hover {
	text-decoration: underline;
}

.footer #content #social {
	width: 100%;
	display:inline-block;
	margin-bottom: 15px;
	text-align: center;
}

.footer #content #social img {
	margin: 0 20px;
	width: 50px;
}

/****************
	Media queries
*****************/

@media only screen and (max-width: 720px){

	.menu ul {
		display: grid;		
	}

	.menu li a {
		width: 90%;
	}

	.gameinfo {
		width: 95%;
		
	}

	.gameinfo #store {
		text-align: center;
	}

	.gameinfo #store img {
		margin: 5px 0;
	}

	.footer #content #links {
		display: block;
		float: none;
		width: 100%;
		text-align: center;
		margin: 15px 0;
	}

	.footer #content #copyright {
		display: block;
		float: none;
		width: 100%;
		text-align: center;
		margin-top: 15px;
	}
}

@media only screen and (max-width: 480px) {

	.header {
		font-size: 20px;
	}

}