<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    width:96%;
    margin-left: 2%;
    margin-right: 2%;
}

/* Style the header */
header {
    background-color: #f1f1f1;
    padding: 2%;
    text-align: center;
}

header img {
height: 80px;
margin-top:0px;

}

/* Create three unequal columns that floats next to each other */
.column {
    float: left;
    padding: 13px;
    min-height:500px;
}

/* Left and right column */
.column.side {
    width: 19.999%;
    box-sizing: border-box;
    background-color:#aaa
}

/* Middle column */
.column.middle {
    width: 60%;
    box-sizing: border-box;
    background-color:#bbb;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/*add columns for catalog display */
/* Create two columns that floats next to each other */
.displaycolumn {
    float: left;
    padding: 13px;
    background-color:white;
    width:95%;
}

/* right column */
.displaycolumn.right {
    width: 50%;
    box-sizing: border-box;
}


/* Left column */
.displaycolumn.left {
    width: 50%;
    box-sizing: border-box;
    background-color:#aaa;
}

/* Clear floats after the columns */
.displaycolumn:after {
    content: "";
    display: table;
    clear: both;
}





/* Style the footer */
footer {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    width: 100%;
}


/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */

div.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 23%;
    font:caption;
    text-align:center;
}

div.gallery:hover {
    border: 1px solid #777;
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}

div.gallery img {
    width: 100%;
    height: auto;
}

div.gallery img:hover {
}

div.gallery:hover {
    border: 1px solid #777;
transform: skew(10deg,10deg);
}
div.minGallery {
    margin: 0px;
    border: 1px solid #ccc;
    float: left;
}


div.miniGallery img {
    width: 24%;
    height: auto;
    -webkit-transition: width 2s; /* Safari */
	-o-transition: width 2s;
	 ms-transition: width 2s; /* Safari */
	-moz- transition: width 2s;/* Mozilla / Firefolx*/
	transition: width 2s;
}

div.miniGallery img:hover {
	width: 33%;
}

div.desc {
    padding: 10px;
    text-align: center;
    background-color:white;
    display:inline-block;
    width: 99%;
}


@media only screen and (max-width: 700px){
    .responsive {
        width: 100%;
        margin: 0px 0;
    }

     .column.side, .column.middle {
        width: 100%;
        min-height: 100px;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
