html {
	overflow-y: scroll;
	min-height: 100%;
}

@media only screen and (min-width: 601px) {
	body {
		margin: 0;
		background-color: #c65f1a;
		
		background-image: url("images/background.jpg");
		
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center-top;
		background-attachment: fixed;
	}
}

@media only screen and (max-width: 600px) {
	body {
		margin: 0;
		background-color: white;
	}
}

/*
-----
Body of content
-----
*/

@media only screen and (min-width: 601px) {
	#contentBox {
		margin: auto;
		width: 60%;
		min-width: 500px;
		max-width: 800px;
		
		box-sizing: border-box;
		
		padding: 20px;
		margin-bottom: 10px;
		margin-top: 10px;
		
		background-color: #ffeee6;
		
		border: 2px solid #330f00;
		border-radius: 50px;
		
		font-family: Lato, sans-serif;
		font-size: 14pt;
	}
	
	h1 {
		margin: 45px;
		font-size: 40pt;
	}

	h1, h2, h3 {
		text-align: center;
	}
}

@media only screen and (max-width: 600px) {
	#contentBox {
		padding: 30px;
		
		background-color: white;
		
		font-family: Lato, sans-serif;
		font-size: 14pt;
	}
	
	h1 {
		margin: 20px;
		font-size: 36pt;
	}

	h1, h2, h3 {
		text-align: center;
	}
}


/*
-----
Footer
-----
*/
/*
@media only screen and (min-width: 601px) {
	#footer {
		margin: auto;
		width: 60%;
		min-width: 500px;
		max-width: 800px;
		box-sizing: border-box;
		
		padding: 5px;
		margin-bottom: 50px;
		margin-top: 10px;
		text-align: center;
		
		background-color: #ffeee6;
		
		border: 2px solid #330f00;
		border-radius: 50px;
		
		font-size: 10pt;
		font-family: Lato, sans-serif;
	}

	#footer p {
		margin: 0;
	}
}
*/
#footer {
	text-align: center;
	border-top: 1px solid black;
	padding-top: 10px;
	
	font-size: 10pt;
	font-family: Lato, sans-serif;
}

#footer p {
	margin: 0;
}