body {
  background: url(./images/bg-mobile.svg), hsl(257, 40%, 49%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin: 0;
}

.navbar {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 20px 0px 10px 20px;
  box-sizing: border-box;
}

.navbar--logo {
  height: 30px;
}

.main-container {
  color: white;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  margin: 20px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-container--illustration {
  width: 100%;
}

.main-container__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-container__content--subtitle {
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.main-container__content--text-content {
  text-align: center;
  margin-top: 10px;
}

.main-container__content--register-button {
  width: 60%;
  height: 35px;
  border-radius: 30px;
  border: none;
  background-color: white;
  box-shadow: 0px 3px rgba(0, 0, 0, 0.3);
  outline: none;
  font-family: "Open Sans", sans-serif;
  color: hsl(257, 40%, 49%);
  transition: ease 300ms;
}

.main-container__content--register-button:active {
  box-shadow: none;
}

.main-container__share-icons {
  margin-top: 30px;
  display: flex;
}

.main-container__share-icons__container {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border: 1px solid white;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 450ms;
}

.main-container__share-icons__container:hover {
  background-color: white;
}

.main-container__share-icons__container:hover
  .main-container__share-icons__container--link {
  color: hsl(257, 40%, 49%);
}

.main-container__share-icons__container--link {
  color: white;
}

@media (min-width: 425px) and (max-width: 1024px) {
  .main-container--illustration{
    width: 45%;
  }
}

@media (min-width: 425px) {
  body {
    background: url(./images/bg-desktop.svg), hsl(257, 40%, 49%);
    background-repeat: no-repeat;
  }

  .navbar--logo{
    padding-top: 30px;
    height: 50px;
  }

  .main-container {
    flex-direction: row;
    margin-top: 75px;
  }

  .main-container__content{
    margin-left: 30px;
  }

  .main-container__content--subtitle {
    text-align: start;
    font-size: 40px;
  }
  
  .main-container__content--text-content {
    text-align: start;
    font-size: 20px;
    line-height: 2rem;
  }

  .main-container__content {
    align-items: start;
  }

  .main-container__content--register-button{
    width: 150px;
    height: 60px;
    border-radius: 50px;
  }

  .main-container__share-icons{
    margin-left: auto;
    margin-top: 100px;
  }
}
