@font-face {
    font-family: "Lobster";
    src: url("https://fonts.googleapis.com/css?family=Lobster") 
}

h1 {color: #1C3B50;
    font-family: 'Lobster', cursive;
    font-size: 70px;
    line-height: 100px;
    text-align: center;
    text-transform: capitalize;
    border-bottom: 3px solid #E3756D;
    margin-top: 5px;
        }

h2 {color: #5C0000;
    font-family: 'Lobster', Georgia, Times, serif;
    font-size: 2em;
    margin-left: 10%;
        }   

body {
  font: 600 18px/24px 'Cabin', Helvetica, Arial, Sans-Serif;
  margin: 12px 0;
}

table {margin-left: 10%;}

.card-container {
  cursor: pointer;
  height: 150px;
  perspective: 600;
  position: relative;
  width: 150px;
}
.card {
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: all 1s ease-in-out;
  width: 100%;

}
.card:hover {
  transform: rotateY(180deg);
}
.card .side {
  backface-visibility: hidden;
  border-radius: 6px;
  height: 100%;
  position: absolute;
  overflow: hidden;
  width: 100%;
}
.card .back {
  background: #eaeaed;
  color: #0087cc;
  line-height: 150px;
  text-align: center;
  transform: rotateY(180deg);
}

        footer {
            background-color: #E3756D;
            font-size: 10px;
            line-height: 25px;
        }