@charset "utf-8";

/* set up the fonts */
body{
	font-family:Verdana, sans-serif;
}
h1,h2,h3,h4{
	font-family:Georgia, serif;
}

/*style a few links */
.box a{
	color:#212020;
	text-decoration:none;
}
.box a:hover{
	text-decoration:underline;
}

/* position the content */
.wrapper {
margin: 0 auto;
width: 960px;
padding: 0;
background-color: #f8fafc;
}

/* style the header and footer */
#footer, #header{
	float:left;
	clear:both;
	padding: 10px;
	text-align:center;
	width:100%;
}

#content {
float: left;
width: 100%;
background-color: #e2e8f0;
}

/* create the floating boxes */
.box {
float: left;
margin: 6px;
padding: 10px;
width: 285px;
height: 460px;
background-color: #ffffff;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
/* style the box content */ 
.box img {
width: 100%;
height: auto;
}
.box h3, .box p{
	text-align:center;
}
@media screen and (max-width: 960px) {

.wrapper {
width: 640px;
}

.box {
width: 280px;
}

}

@media screen and (max-width: 640px) {

.wrapper {
width: 95%;
}

.box {
width: 100%;
float: none;
margin: 10px auto;
}

}