@charset "utf-8";
/* CSS Document */
.gallery{
	margin:10px 24px;
}
.gallery img{
    float: none;
	transition:1s;
    width: 202px !important;
    border: 10px #90c869 solid;
    margin: 10px;
}
.gallery img:hover{
	filter:grayscale(100%);
	transform:scale(1.1);
}
