@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro);
*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: default;
}

body {
  font-family: "Source Sans Pro",-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 16px;
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #000;
  cursor: pointer;
}

div#main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  min-height: 100vh;
  min-width: 100vw;
  margin: 0;
  padding: 0;
}

div#main .title {
  overflow: hidden;
  margin: 0 0 20px 0;
}

div#main .title h1 {
  font-size: 400%;
}

div#main .nav {
  overflow: hidden;
}

.wrap {
  opacity: 0;
}

div#main.ready .wrap {
  -webkit-animation: slideIn .5s ease both;
          animation: slideIn .5s ease both;
}

div#main.ready .nav .wrap {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

@-webkit-keyframes slideIn {
  from {
    opacity: 1;
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 1;
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*# sourceMappingURL=style.css.map */