@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background: url("./images/bg-mobile.svg") no-repeat #674baf;
  background-size: 100vw 40vh;
  background-position: top;
  padding: 1rem;
  font-family: 'Poppins', sans-serif;
}

body nav {
  min-width: 90vw;
  margin: 1.5rem 0;
}

body nav .logo {
  max-width: 150px;
  padding-right: 1rem;
}

body nav .logo img {
  width: 100%;
}

body main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  place-items: center;
  gap: 1rem;
  min-height: 80vh;
  margin-bottom: 1rem;
}

body main .imageContainer {
  max-width: 400px;
}

body main .imageContainer img {
  width: 100%;
}

body main .cta {
  min-height: 35vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: white;
  text-align: center;
  padding: 0 .3rem;
  max-width: 25rem;
}

body main .cta h1 {
  font-size: 1.5rem;
  font-weight: bolder;
}

body main .cta p {
  color: #ffffffc2;
  margin: 1.5rem 0;
}

body main .cta .cta-btn {
  text-decoration: none;
  list-style: none;
  text-align: left;
  padding: .8rem 3.5rem;
  background-color: white;
  border-radius: 20px;
  display: block;
  color: #674baf;
  max-width: 200px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.466);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.466);
}

body main .cta .cta-btn:hover {
  background-color: #e882e8;
  -webkit-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
  color: white;
}

body .social {
  min-height: 20vh;
  max-height: 25vh;
  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;
  gap: 1rem;
}

body .social .contain {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 1.5rem;
          flex: 0 1 1.5rem;
}

body .social .st0 {
  fill: #f8ffff;
  display: inline-block;
  max-width: 100%;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

body .social .st0:hover {
  fill: #e882e8;
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

body footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 660px) {
  body {
    height: 100vh;
    background: url("./images/bg-desktop.svg") no-repeat #674baf;
    background-size: cover;
    background-position: center;
    padding: 1rem;
    font-family: 'Poppins', sans-serif;
  }
  body main {
    margin: auto;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    min-height: 60vh;
  }
  body main .imageContainer {
    max-width: 500px;
  }
  body main .cta {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    max-width: 40rem;
  }
  body .social {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 3rem;
  }
}
/*# sourceMappingURL=styles.css.map */