body {
  font-family: "Open Sans";
  background-color: #674baf;
  color: white;
  background-image: url("./images/bg-desktop.svg");
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 500px) {
  body {
    background-image: url("./images/bg-mobile.svg");
  }
}

.logo-container {
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.logo-container .logo {
  display: block;
  height: 50%;
  margin: auto 20px;
}

.inner {
  width: 90%;
  margin: 20px auto;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.right {
  width: 38%;
  margin-left: 80px;
}

@media (max-width: 500px) {
  .right {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}

.illustration {
  width: 100%;
}

h2 {
  font-family: "Poppins";
  font-size: 2rem;
  margin-top: 40px;
}

p {
  font-weight: 300;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #674baf;
  background-color: white;
  font-family: "Open Sans";
  font-size: 1rem;
  padding: 14px 50px;
  font-weight: 400;
  margin: 20px auto;
  border-radius: 44px;
  border: none;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 10px -10px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 0px 10px -10px rgba(0, 0, 0, 0.75);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media (max-width: 500px) {
  .button {
    height: 50px;
    width: 80%;
  }
}

.button:hover {
  -webkit-box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.75);
          box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.75);
}

@media (min-width: 501px) {
  .container {
    margin: 10px 0;
  }
}

.share-icons-parent {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 501px) {
  .share-icons-parent {
    margin-right: 20px;
    max-width: 80px;
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.share-icons-parent .share-icon-container {
  padding: 4px;
}

.share-icons-parent .share-icon-container .icon {
  width: 28px;
}
