@charset "utf-8"

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

div.gallery {
  margin: 270px;
  float: left;
  width: 100%;
}
div.gallery img{
	float:left;
	width:150px;
	height:150px;	
	overflow:hidden;
	border:solid #181F78 3px;
	border-radius:8px;
	margin: 60px;
	transition: 0.1s ease-in-out;
}
div.gallery img:hover{
	transform: scale(4);
}