#f1_container {
	position: relative;
	margin: 10px auto;
	width: 700px;
	height: 481px;
	z-index: 1;
	margin-top: 100px;
	-webkit-perspective: 1000;
}

#f1_card {
	width: 100%;
	height: 100%;
	-webkit-transform-style: preserve-3d;
	-webkit-transition: all 1s linear;
}
#f1_container:hover #f1_card {
	-webkit-transform: rotateY(180deg); /*how far it rotates & direction*/
	-webkit-box-shadow: -5px 5px 5px #aaa;
	margin-top: 200px;/*margin-top: 500px;*/
}
.face {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;/**/
}
.face.back {
	display: block;
	-webkit-transform: rotateY(180deg); /*sets up the back*/
	-webkit-box-sizing: border-box;
	padding: 10px;
	color: black;
	text-align: center;
	background-color: tan;
}
p {
	font-weight: bold;
	font-size: 26pt;
	text-align:left;
}
.header{
	font-size: 32pt;
	text-align:center;
}
img {
	width: inherit;
	height: inherit;
}