	.large {
		width: 300px;
		height: 300px;
		overflow: hidden;
		margin: 0 auto;
	}

	.large img {
		width: 100%;
		transition: 0.5s all ease-in-out;
	}

	.large:hover img {
		transform: scale(1.5);
	}
