@import url(https://fonts.googleapis.com/css?family=Pacifico);
@import url(https://fonts.googleapis.com/css?family=Lato:100italic);
body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Pacifico', cursive;
  margin: 0;
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}
canvas {
  position: absolute;
  top: 0px;
  left: 0px;
}
ul {
  position: absolute;
  top: 0;
  right: 0;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
ul li {
  padding: 10px;
  border-bottom: 1px dashed white;
}
li:hover {
  cursor: pointer;
  text-decoration: underline;
}
#overlay {
  -webkit-transform-origin: 50% 50%;
  -webkit-transform: scale(-1, 1);
}
.textEffect {
  color: #fdf39f;
  text-shadow: 1px 1px 1px #ad2b0c, 2px 2px 1px #ad2b0c, 3px 3px 1px #ad2b0c, 4px 4px 1px #ad2b0c, 5px 5px 1px #ad2b0c, 6px 6px 1px #ad2b0c;
}
section {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #fdf39f;
  text-align: center;
  font-size: 1.2em;
}
section #camera-prompt,
section #desc {
  font-family: 'Lato', sans-serif;
  font-style: italic;
  margin-top: 20px;
}
section #init-btn {
  top: 50%;
  margin: 25% 0 0 0;
  cursor: pointer;
  font-size: 2.4em;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
  color: #fdf39f;
  text-shadow: 1px 1px 1px #ad2b0c, 2px 2px 1px #ad2b0c, 3px 3px 1px #ad2b0c, 4px 4px 1px #ad2b0c, 5px 5px 1px #ad2b0c, 6px 6px 1px #ad2b0c;
  -webkit-transform: translateX(-10px) rotate(-10deg);
}
section #init-btn:hover {
  color: white;
  -webkit-transform: translateX(-10px) rotate(-5deg) scale(1.2, 1.2);
}
#curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: #000;
}
.preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}
#greeting {
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 1;
  text-align: center;
  margin: 40px;
  padding: 20px;
  font-size: 3em;
  color: #fdf39f;
  text-shadow: 1px 1px 1px #ad2b0c, 2px 2px 1px #ad2b0c, 3px 3px 1px #ad2b0c, 4px 4px 1px #ad2b0c, 5px 5px 1px #ad2b0c, 6px 6px 1px #ad2b0c;
  -webkit-transform: translateX(20px) rotate(-10deg);
}
@media (min-width: 900px) {
  #greeting {
    font-size: 6em;
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
