body{
  font-family: 'Karla', sans-serif;
  background: url('images/bg.png') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  text-align: center;
  padding: 50px;
  border: 10px solid #ADF6FF;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

h1, h2{
  margin: 0 auto 15px auto;
}

p{
  margin-bottom: 10px;
}

p.intro{
  margin: -40px auto 0 auto;
  font-size: 24px;
  font-weight: 700;
  max-width: 410px;
  text-align: left;
  letter-spacing: 1px;
  line-height: 32px;
}

/* CTA */
.cta{
  margin: 0 auto 75px auto;
  display: flex;
  align-items: center;
  max-width: 520px;
  padding: 25px;
}
.cta img{
  width: 50%;
  margin-left: 50px;
  margin-right: 20px;
}

a{
  color: #2CBEFF;
  font-weight: 700;
  text-decoration: underline;
}
a:hover{
  text-decoration: none;
}
svg{
  width: 100%;
}


@media (max-width: 700px) {
  body{
    padding: 0 20px 20px 20px;
  }
  p.intro{
    margin-bottom: 25px;
  }
  .cta{
    display: block;
    margin-bottom: 25px;
  }
  .cta img{
    margin: 0 auto 25px auto;
    width: 100%;
    height: auto;
  }
  .cta svg{
    margin-bottom: 25px;
  }

}