:root {
  --Violet: hsl(257, 40%, 49%);
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  border: 0;
  outline: 0;
}

section {
  min-height: 100vh;
  width: 100%;
  background: var(--Violet) url("../images/bg-desktop.svg") no-repeat center center/cover;
  padding: 50px;
}

section .logo {
  height: 60px;
  width: 100%;
  background: url("../images/logo.svg") no-repeat;
  background-size: auto 80%;
}

section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 220px);
  color: white;
}

section .container .illustration {
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5;
          flex: 0.5;
  width: 100%;
  background: url("../images/illustration-mockups.svg") no-repeat center center/contain;
}

section .container .copy {
  -webkit-box-flex: 0.5;
      -ms-flex: 0.5;
          flex: 0.5;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 50px;
}

section .container .copy h1 {
  font-size: 2rem;
}

section .container .copy p {
  margin: 20px 0;
  font-family: "Open Sans", sans-serif;
}

section .container .copy button {
  background: white;
  color: var(--Violet);
  height: 50px;
  width: 160px;
  padding: 0 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  -webkit-box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

section .container .copy button:hover {
  cursor: pointer;
  -webkit-box-shadow: 0 8px 16px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 16px 4px rgba(0, 0, 0, 0.3);
}

section .social-media-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 60px;
}

section .social-media-container a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid white;
  border-radius: 50%;
  margin: 0 12px;
  color: white;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

section .social-media-container a:hover {
  color: var(--Violet);
  background: white;
}

@media (max-width: 700px) {
  section {
    padding: 50px 25px;
    background: var(--Violet) url("../images/bg-mobile.svg") no-repeat top center/contain;
  }
  section .logo {
    background-size: 40% auto;
  }
  section .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
  }
  section .container .copy {
    margin-top: 50px;
    padding: 0;
  }
  section .container .copy h1 {
    font-size: 1.4rem;
  }
  section .container .copy button {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  section .social-media-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*# sourceMappingURL=styles.css.map */