@charset "utf-8";
/* CSS Document */
body{
	margin: 0px;
	padding: 0px;
	background: #000000;
}
h1{
	color: #ffffff;
	font-family: Cambria, "Hoefler Text", "Liberation Serif";
	font-size:65px
}
.gallery{
	align-content: center;
	margin: 10px 110px;
}
.gallery img{
	height: 190px;
	padding: 3px;
	filter: grayscale(80%);
	transition: 1s;
}
.gallery img:hover{
	filter: grayscale(0);
	transform: scale(1.2);
}