body{
	background: #262626;
	}
.artwork-series{
	padding: 60px;
}
.section-heading{
	text-align: center;
	color: #fff;
	margin-bottom: 50px;
	text-transform: uppercase;
	font-size: 55px;
	font-family: bignoodletitling;
	letter-spacing: 5px;	
}
.card{
	border: none;
	background: #fff;
}
.img-area{
	width: 150px;
	height: 150px;
	display: inline-block;
	overflow: hidden;
	border-radius: 50%;
}
.artwork-series:hover .side-two {
	transform:rotateY(0deg);
	border-radius: 5px;
}
.artwork-series:hover .side-one {
	transform:rotateY(180deg);
}
.content-area{
	transform: perspective(1000px);
	transition: 1s;
	transform-style: preserve-3d;
	position: relative;
}
.side-one{
	position: relative;
	transform: rotateY(0deg);
	z-index: 2;
	margin-bottom: 30px;
}
.side-two{
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	transform: rotateY(180deg);
}
.side-one,
.side-two{
	backface-visibility: hidden;
	transition: 1s;
	transform-style: preserve-3d;
}
.side-one .card,
.side-two .card{
	min-height: 312px;
}
.side-two .card a {
	font-size: 18px;
	color: brown;
}
h4{
	color: brown;
	font-family: bignoodletitling;
	letter-spacing: 5px;
	font-size: 25px;
}
h5{
	color: brown;
	font-family: bignoodletitling;
	letter-spacing: 5px;
	font-size: 20px;
p{
	font-family: merienda;
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
  /* Remove the padding we set earlier */
  .header,
  .information,
  .footer 
  {
    padding-right: 0;
    padding-left: 0;
  }
	
