.wrap {
  padding:5px;
  margin: 5px;
  border: 1px solid #ccc;
  float: left;

}

.wrap:hover {
  border: 1px solid #777;
}

.thumbwrap {
   overflow:hidden;
}

.thumbnail {
  height:150px;
  width: auto;
  margin-right:auto;
  margin-left:auto;
  -webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.thumbnail:hover {
-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.desc {
   text-align: center;
}

/** LIGHTBOX MARKUP **/

.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}

.lightbox img {
	/** Pad the lightbox image */
	max-width: 90%;
	max-height: 80%;
	margin-top: 2%;
   padding: 20px;
   background: #151515;
   border-radius:5px;
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: block;
}
