/* CSS Document */


@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes masked-animation {
  0% {
    background-position: left bottom;
  }
  100% {
    background-position: right bottom;
  }
}

#start {
  position: absolute;
  margin: auto;
  text-align: center;
  top: 50%;
  margin-top: 260px;
  width: 100%;
  z-index:-1;

}

.blink_me {
  animation: blinker 3s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0.3;
  }
}

#wrap {
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index:-1;
 
}

#viewport {
  position: relative;
  width: 100%;
  height: 1400px;
  overflow: hidden;
  margin-top:-600px;
  z-index:-1;

}
@media only screen and (max-width: 480px) {#viewport{height: 1000px;}}
#viewport .smoke {
  position: absolute;
  width: 250px;
  height: 250px;
  background: url("../images/smoke.png") no-repeat;
  bottom: 150px;
  margin-left: 0px;
  z-index:-1;
}

@-webkit-keyframes masked-animation {
  0% {
    background-position: left bottom;
  }
  100% {
    background-position: right bottom;
  }
}
