html{
	height: 100%;
}

body{
	height: 100%;
	margin: 0;
	padding: 0;
	background-image:url(./images/bg.png); /*This pattern is downloaded from www.subtlepatterns.com*/
	background-repeat:repeat;
	text-align: center;
}

#header{
	background-color: rgba(180,180,180,0.3);
	margin-bottom: 25px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

#header > h1{
	padding: 20px;
	font-family: 'Noto Serif', serif;
	font-size: 2.5em;
	margin: auto;
}

#content{
	height: 65%;
	min-width: 485px;
	border-radius: 10px;
	background-color: #F0F0F0;
	margin: auto;
	-webkit-box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 2px 20px 0px rgba(0,0,0,0.75);
}

h2{
	padding: 10px;
}