div.gallery {
    border: 5px solid #1E1616;
	color: black;
	background: #DFD9AB;
}

div.gallery:hover {
    border: 10px solid #D70000;
}

div.gallery img {
    width: 100%;
    height: auto;

}

div.caption {
    padding: 10px;
    text-align: center;
}

* {
    box-sizing: border-box;
}

.responsive {
    padding: 0 6px;
    float: left;
    width: 25%;
}

@media only screen and (max-width: 700px){
    .responsive {
        width: 50%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px){
    .responsive {
        width: 100%;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}