@charset "utf-8";
/* CSS Document */

#wrapper {
    height: 1600px;
    width: auto;
    padding: 5px;
    background: linear-gradient(to left, rgba(255, 255, 255, .5), rgba(255, 255, 255, 1.00), rgba(255, 255, 255, .5));
}
.gallery a {
    padding: 0;
    background-color: transparent;
	border: none;
	box-shadow: none;
}
	#gallery h2 {
padding: 50px;
    background-color: aqua;
    width: 100%;
    height: auto;
}
.holder.mygallery img {
    height: auto;
    padding: 25px;
    filter: grayscale(80%);
    transition: 1s;
}
.holder.mygallery img:hover {
    filter: grayscale(0%);
    transform: scale(1.2);
}
	
#lightbox-image {
		width: 60%;
		height: auto;
	}

#gallery .holder.mygallery {
	background-image: none;
	height: inherit;
}


