*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.3;
  font-family: "open sans", sans-serif;
  font-size: 16px;
}

a,
a:visited {
  text-decoration: none;
}

header {
  margin-bottom: 70px;
}

@media screen and (min-width: 1024px) {
  header {
    margin-bottom: 100px;
  }
}

header > img {
  width: 120px;
}

@media screen and (min-width: 1024px) {
  header > img {
    width: 200px;
  }
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}

@media screen and (min-width: 1024px) {
  footer {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 26px;
  }
}

footer > a {
  margin-left: 16px;
}

footer i.fab {
  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;
  border: 1px solid white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: -webkit-transform 100ms ease-in-out;
  transition: -webkit-transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out;
}

footer i.fab:hover {
  border-color: #e882e8;
  color: #e882e8;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

body {
  padding: 40px;
  background-color: #674baf;
  background-image: url("/images/bg-mobile.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: #ffffff;
}

@media screen and (min-width: 1024px) {
  body {
    padding: 60px 80px 40px 80px;
    background-image: url("/images/bg-desktop.svg");
  }
}

@media screen and (min-width: 1024px) {
  main {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media screen and (max-width: 764px) {
  .heroimage {
    margin-bottom: 70px;
  }
}

.heroimage img {
  width: 100%;
}

.herotext {
  line-height: 1.75;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .herotext {
    padding-left: 60px;
    text-align: left;
  }
}

h1 {
  font-family: "poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 1024px) {
  h1 {
    font-size: 32px;
    line-height: 1.3;
  }
}

a.cta {
  display: inline-block;
  position: relative;
  min-width: 250px;
  margin-top: 26px;
  padding: 20px;
  background: white;
  color: #674baf;
  line-height: 1;
  text-align: center;
  font-size: 14px;
  border-radius: 40px;
  -webkit-box-shadow: 5px 5px 10px #3d2c68;
          box-shadow: 5px 5px 10px #3d2c68;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: -webkit-transform 100ms ease-in-out;
  transition: -webkit-transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out;
  transition: transform 100ms ease-in-out, -webkit-transform 100ms ease-in-out;
}

@media screen and (min-width: 1024px) {
  a.cta {
    min-width: 200px;
    padding: 20px 66px;
  }
}

a.cta:hover {
  background: #e882e8;
  color: #ffffff;
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
/*# sourceMappingURL=style.css.map */