@charset "utf-8";
/* CSS Document */

body{
	font-family:"Times New Roman";
}

.gallery{
	margin:auto 050px ;
}

.gallery img{
	width: 220px;
	padding: 5px;
	filter: grayscale(50%);
	transition: 1s;
}
.gallery img:hover{
	filter: grayscale(0);
	transform: scale(1.1);
}