@charset 'UTF-8';
@import url('reset.css');

/* fonts */

@import url(https://fonts.googleapis.com/css?family=Righteous);

/* page styling */

body {
	font-family: 'Myriad Pro';
	background: rgb(130, 156, 46) url(../img/tile.png) repeat;
	padding: 100px;
}

#bigBox {
	display: block;
		min-width: 1100px;
	width: 100%;
	min-height: 400px;
	height: auto;
	background: rgb(181, 183, 99);
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 1);
	padding: 40px;
	border-radius: 40px;
}
#sandBox, #litterBox {
	float: right;
}
#sandBox {
	display: inline-block;
	min-width: 480px;
	width: auto;
	min-height: 400px;
	height: auto;
	background: rgb(255, 255, 255);
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.6);
	padding: 6px;
	border-radius: 10px;	
}
#litterBox {
	font-family: 'Righteous', cursive;
	display: inline-block;
	padding: 6px;
	margin-right: 60px;
}

h1 {
	color: rgb(130, 156, 46);
	text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.8);
	font-family: 'Righteous', cursive;
	text-transform: capitalize;
	font-size: 5em;
	margin-bottom: 40px;
	text-align: center;
}

#litterBox h3 {
	font-size: 3em;
	text-transform: uppercase;
	color: rgb(255,255,255);
	text-shadow: 0px 2px 3px rgb(0,0,0);
	padding-bottom: 20px;
}

#litterBox p {
	font-size: 1.8em;
	padding-bottom: 20px;
	line-height: 1.3em;
}

#litterBox a {
	text-align: center;
	color: rgb(255,255,255);
	text-shadow: 0px 2px 3px rgb(0,0,0);
	display: block;
	padding: 10px;
	text-decoration: none;
	text-transform: uppercase;
	border: rgb(255, 255, 255) 1px solid;
	border-radius: 10px;
	box-shadow: 0px 2px 10px rgba(0,0,0,0.0);
	margin: 0 auto 10px auto;
	clear: both;
}

#litterBox a:hover {
	box-shadow: 0px 2px 10px rgba(0,0,0,0.6);
}
#footText {
	display: block;
font-family: 'Myriad Pro', Arial, sans-serif;
color: rgb(203, 203, 203);
margin: 10px auto 20px auto;
font-size: 2em;
text-align: center;
	text-shadow: 0px 2px 3px rgba(0,0,0, 0.8);
}
#footText a {
		color: rgb(203, 203, 203);
	text-decoration: none;
	text-shadow: 0px 2px 3px rgba(0,0,0, 0.8);

}
#footText a:hover {
		color: rgb(255,255,255);
	text-shadow: 0px 2px 3px rgba(0,0,0, 1.0);

}
.clearBoth:after
{
	content: '.';
	display: block;
	position: relative;
	width: 100%;
	height: 0px;
	clear: both;
	visibility: hidden;
}

/* handheld portrait */
@media screen and (orientation: portrait){
	body {
		padding: 20px;
	}
	#bigBox  {
		min-width: 570px;
		width: 570px;
	}
}
/* handheld landscape
@media screen and (orientation: landscape){
	body {
		padding: 20px;
	}
	#bigBox  {
		min-width: 1100px;
		width: 1100px;
	}
} */