body {
	background: skyblue;
}
a {
	text-decoration: none;
}
#home_pics {
	width: 1000px;
	margin: auto;
}
#home_pics img {
	padding: 15px;
}
#home_pics a {
	float: left;
	background: #fff;
	display: block;
	width: 300px;
	text-align: center;
	text-decoration: none;
	transition: all 1s ease;
}

#home_pics a:after {
	content:attr(title); /* indrt titles fter */
	padding:15px 0 10px 0; /* Polaroid like */
	display:block; /* creates space after bottom of label (title) */
	font-style:italic;	
}

#home_pics a:hover {
	transform:rotate(0deg) scale(1.25,1.25); /* if being hovered over, makes the image straight and enlarged */
	z-index:10;	/* puts whatever a link photo above the others */
}


.left_tilt {
	transform: rotate(-30deg);	/* starting point angle*/
}

.right_tilt {
	transform: rotate(30deg);	/* starting point angle */
}