@font-face {
  font-family:"nova";
  src: url("../fonts/ProximaNova-Light-webfont.woff") format("woff");
}

@font-face {
  font-family:"novabold";
  src: url("../fonts/ProximaNova-Sbold-webfont.woff") format("woff");
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px) {
    .flip-container, .front, .back {
      width: 320px;
      height: 480px;
    }

}


.jumbotron {
  background-image: url("../images/banner.png");
  height: 108px;
  text-align: center;
  padding: 0px;
}

.jumbotron img {
  height: 100px;
}

.col-xs-12 {
  margin-top: 20px;
}

.back {
  background: #791C99;
}

.back .h-card
 {
  text-transform: uppercase;
  font-size: 1.125em;
  font-family: nova;
  color: #f8f8f8;
  text-align: center;
  padding-top: 50%;
  margin: 0 auto;
}


.msbtn {
  background-color: #f8f8f8;
  color: black;
  padding: 10px;
  margin: 0 auto;
  font-style: 0.75em;
  font-weight: normal;
  /*font-weight: bold;*/
  }

.front .name {
  font-size: 2em;
  display: inline-block;
  background: #791C99;
  color: #f8f8f8;
  font-family: nova;
  
  height: 100px;
  margin: 0px;
  width: 100%;
  bottom: 0px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  line-height: 100px;
}


  /*For the following, credit goes to David Walsh, http://davidwalsh.name*/
  /* entire container, keeps perspective */
  .flip-container {
    perspective: 1000;
    transform-style: preserve-3d;
  }
    /*  UPDATED! flip the pane when hovered */
    .flip-container:hover .back {
      transform: rotateY(0deg);
    }
    .flip-container:hover .front {
        transform: rotateY(180deg);
    }

  .flip-container, .front, .back {
    width: 360px;
    height: 532px;
  }

  /* flip speed goes here */
  .flipper {
    transition: 0.6s;
    transform-style: preserve-3d;

    position: relative;
  }

  /* hide back of pane during swap */
  .front, .back {
    backface-visibility: hidden;
    transition: 0.6s;
    transform-style: preserve-3d;

    position: absolute;
    top: 0;
    left: 0;
  }

  /*  UPDATED! front pane, placed above back */
  .front {
    z-index: 2;
    transform: rotateY(0deg);
  }

  /* back, initially hidden pane */
  .back {
    transform: rotateY(-180deg);
  }

  /* 
    Some vertical flip updates 
  */
  .vertical.flip-container {
    position: relative;
  }

    .vertical .back {
      transform: rotateX(180deg);
    }

    .vertical.flip-container:hover .back {
        transform: rotateX(0deg);
    }

    .vertical.flip-container:hover .front {
        transform: rotateX(180deg);
    }