body{
	font-family:Verdana, sans-serif;
}
h1,h2,h3,h4{
	font-family:Georgia, serif;
}
.box a{
	color:#c21717;
	text-decoration:none;
}
.box a:hover{
	text-decoration:underline;
}
/* fluid */
.box {
    float: left;
    margin: 5px;
    padding: 10px;
    width: 285px;
    height: 480px;
    border: 1px solid rgb(36, 71, 244);
}
.box img{
    width:280px;
}

/* responsive */
.wrapper{
    margin:0 auto;
	width:960px;
    padding: 0 10px;
}
#content {
    float: left;
    width: 100%;
    background-color: #eee987;
}
.box {
    float: left;
    margin: 6px; /* tweak this to fit screen */
    padding: 10px;
    width: 285px;
    height: 480px;
    border: 1px solid rgb(36, 71, 244);
    background-color: rgb(189, 242, 157); /* this is new! */
}

/* the fluidity when  resize the screen */
@media screen and (max-width: 960px){
    .wrapper{
        width:640px;
    }
}
@media screen and (max-width: 640px) {
    .wrapper {
        width: 320px;
    }
    h1, h2, h3, h4, p{
        word-wrap: break-word;
    }
    
    #header{
        padding: 0;
    }
}