@charset "UTF-8";
.logo {
  max-width: 150px;
  margin: 0 auto;
  display: block; }

body {
  margin: 0;
  opacity: 0;
  background: #ffffaa;
  transition: all .6s ease-in-out; }
  @media screen and (max-width: 600px) {
    body {
      font-size: .9em; } }

header {
  height: 100vh; }

.clearfix:after {
  display: block;
  content: "";
  clear: both; }

.fading-text {
  opacity: 0;
  transition: all .5s ease-in-out; }
  .fading-text:nth-child(1) {
    transform: translateX(60px); }
  .fading-text:nth-child(2) {
    transform: translateX(120px); }
  .fading-text:nth-child(3) {
    transform: translateX(180px); }
  .fading-text:nth-child(4) {
    transform: translateX(240px); }
  .fading-text:nth-child(5) {
    transform: translateX(300px); }
  @media screen and (max-width: 600px) {
    .fading-text:nth-child(1) {
      transform: translateX(0px); }
    .fading-text:nth-child(2) {
      transform: translateX(0px); }
    .fading-text:nth-child(3) {
      transform: translateX(0px); }
    .fading-text:nth-child(4) {
      transform: translateX(0px); }
    .fading-text:nth-child(5) {
      transform: translateX(0px); } }

.show {
  opacity: 1; }

.show-text {
  opacity: 1;
  backface-visibility: hidden; }
  .show-text:nth-child(1) {
    transform: translateX(30px); }
  .show-text:nth-child(2) {
    transform: translateX(60px); }
  .show-text:nth-child(3) {
    transform: translateX(90px); }
  .show-text:nth-child(4) {
    transform: translateX(120px); }
  .show-text:nth-child(5) {
    transform: translateX(150px); }
  @media screen and (max-width: 600px) {
    .show-text:nth-child(1) {
      transform: translateX(0px); }
    .show-text:nth-child(2) {
      transform: translateX(0px); }
    .show-text:nth-child(3) {
      transform: translateX(0px); }
    .show-text:nth-child(4) {
      transform: translateX(0px); }
    .show-text:nth-child(5) {
      transform: translateX(0px); } }

#canvasHolder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: blur(5px);
  transition: all .5s ease-in-out;
  backface-visibility: hidden; }

.unblur {
  filter: blur(0px) !important; }

canvas {
  display: block; }

.header-content {
  position: absolute;
  max-width: 1000px;
  top: 30%;
  left: 20%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-family: 'Josefin Sans', sans-serif; }
  .header-content h1 {
    font-weight: 300;
    font-size: 2.1em;
    width: 100%; }
    @media screen and (max-width: 600px) {
      .header-content h1 {
        font-size: 1.8em;
        padding-top: 1em;
        padding-bottom: 1em; } }
  .header-content .launch-button {
    display: inline-block;
    position: relative;
    z-index: 100;
    bottom: 0;
    background: none;
    border: 2px solid #222;
    border-radius: 50px;
    padding: 15px 40px;
    color: #222;
    font-size: 1em;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    outline: none;
    transition: all .1s ease-in-out;
    backface-visibility: hidden; }
    .header-content .launch-button:hover {
      color: #eee; }
    .header-content .launch-button:after {
      display: block;
      content: "";
      background: #222;
      position: absolute;
      top: 0%;
      left: 0%;
      z-index: -1;
      border-radius: 50px;
      width: 100%;
      height: 100%;
      transform: scale(0, 0);
      transition: all .1s ease-in-out; }
    .header-content .launch-button:hover:after {
      transform: scale(1, 1); }
    .header-content .launch-button:active, .header-content .launch-button:focus  {
      outline: none; }
    @media screen and (max-width: 600px) {
      .header-content .launch-button {
        margin: 0 auto; } }
  @media screen and (max-width: 600px) {
    .header-content {
      position: relative;
      top: 0;
      left: 0;
      transform: translate(0, 0);
      margin: 0 auto;
      width: 90%; } }
