@charset "utf-8";
#projects h2 {
	font-size: 20px;
	color: #333;
	margin: 7px 0;
}

#projects a:hover {
	text-decoration: none;
	color: #205F82;
}

#projects a:link,#projects a:visited {
	color: #4083A9;
	outline: none;
	text-decoration: none;
}

#projects .author {
	font-size: 13px;
	margin: 5px 0 25px;
}

#projects .date {
	font-size: 13px;
	font-weight: bold;
}

/**/
#projects {
	width: 90%;
	display:flex;
	flex-wrap: wrap;
	text-align:center;
	justify-content: space-between;
	margin: 30px auto;
	perspective: 1000;
}

#projects .flipper {
	/*width: 250px;
	height: 350px;*/
	width:20%;
	height:350px;
	margin:10px;
	display: inline-block;
	-webkit-transform: scale(0.90);
	-moz-transform: scale(0.90);
	-o-transform: scale(0.90);
	-ms-transform: scale(0.90);
	transform: scale(0.90);

/*	-webkit-box-shadow: 0 3px 5px rgba(0,0,0,.2);
	box-shadow: 0 3px 5px rgba(0,0,0,.2);*/

	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;

	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	position: relative;
}
#projects .flipper:hover {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);

	-webkit-box-shadow: 0 5px 25px rgba(0,0,0,.2);
	box-shadow: 0 5px 25px rgba(0,0,0,.2);
	cursor: pointer;
}

/*#projects .flipper.blur {
	-webkit-filter: blur(3px);

	-webkit-transform: scale(0.88);
	-moz-transform: scale(0.88);
	-o-transform: scale(0.88);
	-ms-transform: scale(0.88);
	transform: scale(0.88);
	filter: alpha(opacity=60);
	opacity: 0.6;
}*/

#projects .flipper.rotate {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

#projects:hover .clicked {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.front,.back {
	width: 250px;
	/*height: 300px;*/
	position: absolute;
	top: 0;
	left: 0;
	backface-visibility: hidden;
}

.front {
	z-index: 2;
}
.front img{
	max-width: 100%;
    max-height: 100%;
}
.back {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
	width: 360px;
	/*height: 260px;*/
	padding: 20px;
	z-index: 1;
	background: white;
}
@media screen and (max-width: 640px) {
.front img{
	width:80px;
}
#projects .flipper {
	width:80px;
    height: 120px;
}
}
