@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700,900");
/* line 5, ../../../../../.rvm/gems/ruby-2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* line 22, ../../../../../.rvm/gems/ruby-2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
  line-height: 1;
}

/* line 24, ../../../../../.rvm/gems/ruby-2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
  list-style: none;
}

/* line 26, ../../../../../.rvm/gems/ruby-2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 28, ../../../../../.rvm/gems/ruby-2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* line 30, ../../../../../.rvm/gems/ruby-2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
  quotes: none;
}
/* line 103, ../../../../../.rvm/gems/ruby-2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

/* line 32, ../../../../../.rvm/gems/ruby-2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
  border: none;
}

/* line 116, ../../../../../.rvm/gems/ruby-2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0.5;
    transform: skew(-10deg) scale(1.3) translateX(-100%);
  }
  to {
    opacity: 1;
    transform: skew(-10deg) scale(1.3) translateX(0);
  }
}
@keyframes slideInLight {
  from {
    opacity: 0.5;
    transform: skew(-20deg) scale(1.3) translateX(-100%);
  }
  to {
    opacity: 1;
    transform: skew(-40deg) scale(1.3) translateX(-35%);
  }
}
@keyframes phoneSlideUp {
  from {
    opacity: 0;
    transform: translateY(130%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* line 49, ../sass/main.scss */
.background {
  height: 100vh;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

/* line 56, ../sass/main.scss */
.bg-dark {
  background: #8e44ad;
  height: 100vh;
  width: 100%;
  transform-origin: center;
}

/* line 63, ../sass/main.scss */
.bg-light {
  animation: slideInLight 1.3s cubic-bezier(0.9, 0.03, 0.46, 0.9) both;
  position: absolute;
  z-index: 2;
  background: #ac6fc5;
  height: 100vh;
  width: 100%;
  transform-origin: center;
}

/* line 73, ../sass/main.scss */
.iphone-img {
  animation: phoneSlideUp 700ms cubic-bezier(0.54, 0.17, 0.09, 0.96) both;
  animation-delay: 0.8s;
  position: absolute;
  z-index: 3;
  height: 80%;
  right: 17%;
  bottom: 50px;
}
/* line 82, ../sass/main.scss */
.iphone-img img {
  height: 100%;
  object-fit: cover;
}

/* line 88, ../sass/main.scss */
.title-container {
  color: white;
  font-family: Lato;
  position: absolute;
  z-index: 3;
  top: 170px;
  left: 10%;
  max-width: 40%;
}
/* line 97, ../sass/main.scss */
.title-container h1 {
  animation: fadeIn 0.5s both;
  animation-delay: 1.2s;
  font-weight: 700;
  font-size: 55px;
  margin-bottom: 40px;
}
/* line 105, ../sass/main.scss */
.title-container p {
  animation: fadeIn 0.5s both;
  animation-delay: 1.3s;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
  opacity: 0.8;
  margin-bottom: 50px;
}

/* line 116, ../sass/main.scss */
.link {
  animation: fadeIn 0.5s both;
  animation-delay: 1.4s;
  color: #ac6fc5;
  background: white;
  border-radius: 3px;
  font-size: 17px;
  display: inline-block;
  padding: 14px 16px;
  text-decoration: none;
  transition: 100ms;
  vertical-align: middle;
}
/* line 129, ../sass/main.scss */
.link:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
/* line 134, ../sass/main.scss */
.link:active {
  transform: translateY(0);
  opacity: 0.7;
  box-shadow: none;
}
