div.gallery {
    border: 1px solid #ccc;
}

div.gallery:hover {
    border: 1px solid #FF0040;
}

div.gallery img {
    width: 200px;
    height: 200px;
}

div.desc {
    padding: 15px;
    text-align: center;
	font-size: 18px ;

}

* {
    box-sizing: border-box;
}

.responsive {
    padding: 6px 6px;
    float: left;
    width: 16%;
}

@media only screen and (max-width: 700px) {
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px) {
    .responsive {
        width: 100%;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}