@charset "UTF-8";
/* 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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

/* 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,
q:before, q:after {
  content: '';
  content: none; }

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

body {
  color: #333;
  font-family: 'Lato', sans-serif;
  background-color: RGBA(93, 175, 41, 1); }

body, html {
  height: 100%; }

.content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  height: auto;
  background: url(/images/background.png) no-repeat;
  background-position: center;
  background-size: cover; }
  @media only screen and (min-width: 1024px) {
    .content {
      height: 100%; } }

.wrapper {
  display: flex;
  flex: 1;
  flex-direction: column; }
  @media only screen and (min-width: 1024px) {
    .wrapper {
      flex-direction: row; } }

.logo {
  font-family: 'Luckiest Guy', cursive;
  font-size: 12vw;
  color: #FFFFFF;
  letter-spacing: -0.7px;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.16);
  padding-top: 4vw; }
  @media only screen and (min-width: 1024px) {
    .logo {
      font-size: 100px; } }

#canvas-wrapper-wrapper {
  max-width: 1000px;
  flex: 3;
  position: relative; }

.left, .right {
  flex: 1; }

#canvas-wrapper {
  position: relative;
  padding-bottom: 66.67%;
  /* aspect ratio */
  height: 0; }

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.text {
  font-weight: bold;
  font-size: 20px;
  color: #FFFFFF;
  letter-spacing: -0.1px;
  text-align: center;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.16);
  line-height: 130%;
  padding: 20px 0; }
  @media only screen and (min-width: 1024px) {
    .text {
      padding: 0 20px; } }
  .text h2 {
    font-size: 30px;
    padding-bottom: 20px;
    line-height: 120%; }
    .text h2 ~ h2 {
      padding-bottom: 0px; }
  .text p {
    padding-bottom: 15px; }
  .text p:last-of-type {
    padding-bottom: 0px; }
  .text .inner-text {
    padding: 20px;
    background: rgba(44, 212, 211, 0.7);
    border-radius: 15px; }

#eggs-complete {
  display: none;
  align-items: center;
  justify-content: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FBD249), to(#F5A623));
  background-image: linear-gradient(180deg, #FBD249 0%, #F5A623 100%);
  text-align: center;
  flex-direction: column;
  padding: 30px;
  border-radius: 15px; }
  #eggs-complete p {
    line-height: 140%; }
  #eggs-complete p:first-of-type {
    margin-bottom: 20px;
    font-size: 20px;
    max-width: 500px; }
  #eggs-complete h1 {
    font-size: 100px;
    margin-bottom: 20px; }
  #eggs-complete h2 {
    font-size: 50px;
    font-family: 'Luckiest Guy', cursive; }
  #eggs-complete button {
    background-image: linear-gradient(134deg, #3023AE 0%, #C86DD7 100%);
    border-radius: 12px;
    border: 0;
    padding: 30px 40px;
    font-size: 30px;
    color: white;
    text-decoration: none;
    display: block; }

nav {
  text-align: center;
  margin: 0 0 20px;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666; }
  nav a {
    background: #29832D;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#339035), to(#29832D));
    background-image: linear-gradient(#339035, #29832D);
    display: block;
    padding: 20px;
    color: white;
    text-decoration: none; }
  nav a[data-behavior=next-room] {
    align-self: flex-end;
    content: '►'; }
  nav a[data-behavior=previous-room] {
    align-self: flex-start;
    content: '◀︎'; }

footer {
  background: rgba(255, 255, 255, 0.56);
  padding: 5px;
  border-radius: 50px;
  margin: 20px auto 0;
  padding: 5px 20px;
  text-align: center;
  align-self: flex-end; }
  footer a {
    color: #DC195D; }

#certificate-background {
  display: none; }

.capitalized {
  text-transform: capitalize; }
