/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
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 {
  content: '';
  content: none;
}

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

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

body {
  background-color: #F2F4F6;
  font-family: 'Poppins', sans-serif;
}

.hidden {
  display: none !important;
}

nav {
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #D1D6D6;
  padding: 10px 30px;
  margin-bottom: 20px;
}

.container {
  padding: 0 15px;
}

.container h1 {
  font-weight: 600;
  margin-top: 15px;
  font-size: 1.5em;
  color: #75838C;
}

#form {
  max-width: 400px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-bottom: 20px;
}

#form input {
  margin-top: 15px;
  padding: 5px 15px;
  line-height: 2em;
  background-color: #F0F0F0;
  border: 1px solid #E5E5E5;
}

#form span {
  color: gray;
  font-size: .8em;
}

#form span small {
  font-size: 80%;
}

.zoomit {
  display: block;
  padding: 20px;
  margin: 30px 0;
  background-color: #26B1F1;
  color: #D1F0FF;
  border: none;
  width: 300px;
  text-decoration: none;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}

.zoomit:hover {
  color: #6ACEFF;
  background-color: #1E7DA8;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.zoom-card {
  width: 960px;
  height: 540px;
  background: #20bdf3;
  position: relative;
}

.zoom-card img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.title-card {
  max-width: 300px;
  padding: 20px;
  border: 20px solid white;
  background-color: rgba(242, 244, 246, 0.9);
  -webkit-box-shadow: 3 3 15px rgba(0, 0, 0, 0.2);
          box-shadow: 3 3 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 30px;
  right: 40px;
  border-radius: 5px;
  font-size: 1.4em;
  line-height: 1.4em;
  font-weight: 100;
}

.title-card span {
  display: inline-block;
}

.title-card #name {
  font-weight: 600;
  font-size: 1.5em;
}

.title-card .quote {
  display: inline-block;
  font-weight: 400;
  font-style: italic;
  font-size: 0.7em;
  line-height: 1.1em;
  margin-top: 5px;
}

canvas {
  position: absolute;
  top: 0;
  left: 400px;
  visibility: hidden;
}

.flipped {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
/*# sourceMappingURL=style.css.map */