/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after, q:before, q:after {
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

body {
  font-family: "Helvetica"; }

html, body {
  height: 100%; }

.section {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out; }
  .section.show {
    position: fixed;
    top: 0%;
    display: block;
    opacity: 1; }
  .section.hidden {
    opacity: 0; }

.quiz, .results {
  opacity: 0; }

.intro {
  background: #2E313B;
  color: white;
  text-align: center; }
  .intro h1 {
    padding: 1em 0;
    font-size: 4em; }
  .intro p {
    width: 50%;
    margin: 0 auto 1em auto;
    text-align: left; }
    .intro p a {
      color: inherit; }
    .intro p strong {
      font-weight: bold; }

.quiz {
  background: #fdfdfa; }
  .quiz .instructions {
    font-size: 1.2em;
    color: gray;
    text-align: center;
    padding-top: 4em; }

.card {
  margin: 1em 0;
  height: 100px; }

.live-results {
  text-align: center;
  width: 50%;
  margin: 0 auto;
  color: #DDD; }

.live-result {
  width: 20px;
  display: inline-block;
  text-align: center; }

.results {
  color: white;
  background: #30090B;
  font-size: 1.2em;
  padding: 100px 200px; }

.flip-container {
  position: relative;
  left: 0;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out; }

.flip-container.exit {
  position: relative;
  left: 200px;
  opacity: 0; }

.flip-container.waiting {
  position: relative;
  left: -200px;
  opacity: 0; }

/* simple */
.flip-container {
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  perspective: 1000;
  margin: 0 auto; }

.flip-container.animate .flipper, .flip-container.hover .flipper, #flip-toggle.flip .flipper {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
  filter: FlipH;
  -ms-filter: "FlipH";
  -webkit-box-shadow: 0 0 3px black;
  box-shadow: 0 0 3px black; }

.flip-container, .front, .back {
  width: 200px;
  height: 100px; }

.flipper {
  -webkit-transition: 0.6s;
  -webkit-transform-style: preserve-3d;
  -moz-transition: 0.6s;
  -moz-transform-style: preserve-3d;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative; }

.front, .back {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0; }

.front {
  background: white;
  z-index: 2;
  box-shadow: 0 1px 5px #DDD; }

.back {
  background: white;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-box-shadow: 0 0 10px black;
  box-shadow: 0 2px 10px #DDD; }

.front p, .back p {
  font-size: 20px;
  font-family: 'Arial';
  text-align: center;
  margin: 0;
  padding: 15px; }

.front p {
  font-size: 40px; }
