@charset "UTF-8";
/* CSS Document */
 /* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card h1{
	margin-top: 50px;
	margin-left: 30px;
	margin-right: 30px;
	font-size: 50px;
	color: #edafb5;
	margin-bottom: 0px;
}.flip-card h2{
	margin-top: 0px;
	margin-left: 30px;
	margin-right: 30px;
	font-size: 25px;
}
.grey-card h2{
	color: #fff;
}
.flip-card img{
	max-height: 90%;
}
.flip-card {
  background-color: transparent;
  height: 240px;
  border: 0px solid #333;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
	padding : 0;
}
.grey-card{
	background-color: #333;
}

.white-card {
	background-color: #fff;
}
hr {
	border-top : 10px solid #edafb5;
	padding: 0;
	margin: 0;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  /*background-color: #bbb;
  color: black;*/
}

/* Style the back side */
.flip-card-back {
  /*background-color: #333;
  color: white;*/
  transform: rotateY(180deg);
} 

