* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'League Spartan', sans-serif;
  font-size: 15px;
}

body {
  background-color: aqua;
}

main {
  height: 100vh;
}

.socialbox {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  align-items: center;
  padding: 5rem 2rem;
  background-color: hsl(0, 0%, 100%);
}

.socialbox__title {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 2.5rem;
  text-align: center;
  color: hsl(300, 43%, 22%);
}

.socialbox__paragraph {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  color: hsl(303, 10%, 53%);
}

/* RATED BY STARS SECTION */

.socialbox_container_rates {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin: 1rem 0;
  width: 100%;
}

.socialbox__rated {
  padding: 1rem 3rem;
  text-align: center;
  border-radius: 0.5rem;
  background-color: hsl(300, 24%, 96%);
}

.socialbox__stars {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  column-gap: 0.5rem;
  justify-content: center;
}

.socialbox__rated h4 {
  font-size: 1rem;
  font-weight: 700;
  color:hsl(300, 43%, 22%);
}

/* ---------------------------- */

/* CUSTOMERS REVIEWS SECTION */

.socialbox_container_reviews {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  margin: 1rem 0;
}

.socialbox__reviews {
  display: grid;
  grid-template-columns: 1fr 3.5fr;
  grid-template-rows: auto auto auto;
  padding: 2rem;
  text-align: left;
  border-radius: 0.5rem;
  color: hsl(300, 24%, 96%);
  background-color:hsl(300, 43%, 22%);
}

.socialbox__reviews img {
  grid-area: 1 / 1 / 3 / 2;
  width: 2.5rem;
  border-radius: 50%;
}

.socialbox__person {
  grid-area: 1 / 2 / 2 / 3;
  margin: auto auto 0 0;
  font-weight: 500;
  color: hsl(300, 24%, 96%);
}

.socialbox__verified {
  grid-area: 2 / 2 / 3 / 2;
  margin: 0 auto auto 0;
  font-weight: 500;
  color: hsl(333, 80%, 67%);
}

.socialbox__comment{
  grid-area: 3 / 1 / 4 / 3;
  margin-top: 2rem;
}

/* -------------------------- */

/* MEDIA QUERY */
@media (min-width: 900px) {

  * {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.33vh;
    /* font-size: 15px; */
  }

  .socialbox {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto auto;
    row-gap: 0;
    height: 100vh;
    width: 100vw;
    padding: 4rem 6rem;
  }

  .socialbox__title {
    grid-area: 1 / 1 / 2 / 2 ;
    padding-right: 16rem;
    text-align: left;
    margin: auto;
  }

  .socialbox__paragraph {
    grid-area: 2 / 1 / 3 / 2 ;
    margin: 2rem 0;
    padding-right: 10rem;
    text-align: left;
  }

  .socialbox_container_rates {
    grid-area: 1 / 2 / 3 / 3 ;
    width: auto;
  }

  .socialbox__rated {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 1rem 2rem;
    width: 29rem;
    min-width: 436px;
    column-gap: 3rem;
  }

  .socialbox_rated_1 {
    margin-left: auto;
    margin-right: 6rem;
  }

  .socialbox_rated_2 {
    margin-left: auto;
    margin-right: 3rem;
  }

  .socialbox_rated_3 {
    margin-left: auto;
    margin-right: 0;
  }

  .socialbox__stars {
    margin: 0;
  }

  .socialbox__stars img {
    width: 1rem;
  }

  .socialbox_container_reviews {
    grid-area: 3 / 1 / 4 / 3 ;
    flex-direction: row;
    column-gap: 1.5rem;
    padding: 0;
    margin: 0;
    margin-top: 2rem;
  }

  .socialbox_review_1 {
    margin-top: 0;
    margin-bottom: auto;
  }

  .socialbox_review_2 {
    margin-top: 1rem;
    margin-bottom: auto;
  }

  .socialbox_review_3 {
    margin-top: 2rem;
    margin-bottom: auto;
  }
}