@charset "utf-8";

/* font settings */
body, h2, h3 {
	font-family:times new roman, serif;
    color: black;
}

h1, h4 {
    color: firebrick;
}

/* box styling */
.box a{
	color:dimgrey;
	text-decoration:none;
}
.box a:hover{
	text-decoration:underline;
}

.wrapper{
	margin:0 auto;
    width: 960px;
	padding:0 10px;
}

#footer, #header{
	float: left;
	clear: both;
	padding: 10px;
	text-align: center;
	width: 100%;
}

#header {
    font-size: 20px;
}

.box {
   float: left;
   margin: 6px; 
   padding: 10px;
   width: 285px;
   height: 480px;
   border: 1px solid dimgray;
    background-color: cornflowerblue;
} 

.box img{
	width: 285px; 
    /* alternatively set the image width in your HTML */
}
.box h3, .box p{
	text-align: center;
}

#footer {
    font-size: 11px;
    color: dimgray;
}

@media screen and (max-width: 640px) {
.wrapper {
width: 320px;
}
h1, h2, h3, h4, p {
word-wrap: break-word;
}
#header {
padding: 0;
}
}
