body {
  font-family: Arial, Helvetica, sans-serif;
  background-color:none;
}
body h2
{
border-style: none none outset none;
border-color:#000099;
border-width:5px;
width:5%;
color:#003366;
text-align:center;
}

.flip-card {
  
  background-color: none;
  width: 180px;
  height: 240px;
  perspective: 1000px;
  border-radius:30px;
  
}

.flip-card-inner {

  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.9);
  border-radius:30px;
  
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #bbb;
  color: black;
 }
.flip-card-front p
{
margin-top:12px;

text-align:center;
color:#FFFFFF;
font-weight:bold;
font-family:sans-serif;
background-color:darkblue;
border-radius:8px;
width:none;
}
.flip-card-front img
{
 border-radius:30px;
 border:none;
 
}
.flip-card-back p
{
font-family:Georgia, "Times New Roman", Times, serif;

}
.flip-card-back {
  background-color: #2980b9;
  color: white;
  transform: rotateY(180deg);
}
.style6 a:link
{
 color:red;
 background-color:yellow;
 text-decoration:none;
}
.style6 a:hover
{
 color:#000000;
 text-decoration:none;
 background-color:#FFFFFF;
}
/* CSS Document */

