@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;700&display=swap');
:root{
  --Cyan: hsl(179, 62%, 43%);
  --light_Cyan: hsl(179, 62%, 83%);
  --Bright_Yellow: hsl(71, 73%, 54%);
  --Light_Gray: hsl(204, 43%, 93%);
  --Grayish_Blue: hsl(218, 22%, 67%);
}
body{
  margin: 0;
  padding: 0;
  background-color: var(--Light_Gray);
  font-family: 'Karla', sans-serif;
  font-size: 16px;
}
/*--------------movile first--------------------*/
.main_container{
  background-color: white;
  width: 313px;
  height: 730px;
  margin: 70px auto 70px; /*70px*/
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* 1 - OUR COMUNITY*/
.our_community{
  padding: 8px 24px 24px 24px;
  height: 270px;
  box-sizing: border-box;
}
.our_community h2.title{
  font-size: 1.2em;
  color: var(--Cyan);
}
.our_community h2.promo{
  color: var(--Bright_Yellow);
  font-size: 1em;
  margin: 25px 0 10px 0;
}
.our_community p{
  color: var(--Grayish_Blue);
  font-size: 0.86em;
  line-height: 27px;
  margin-top: 16px;
}

/* 2 - MONTHLY SUSCRIPTION*/
.monthly_suscription{
  background-color: var(--Cyan);
  padding: 12px 24px 24px 24px;
  height: 230px;
  /* box-sizing: border-box; */
  color: var(--Light_Gray);
}
.monthly_suscription h2{
  font-size: 1em;
  margin-bottom: 18px;
}
.price{
  font-size: 2em;
  font-weight: bold;
}
.payment{
  margin-left: 5px;
  padding-top: -50px;
  font-weight: 300;
}
.monthly_suscription P{
  margin-top: 8px;
}
button{
  margin-top: 14px;
  background-color: var(--Bright_Yellow);
  border-radius: 5px;
  width: 100%;
  height: 48px;
  border-style: none;
  color: var(--Light_Gray);
  font-size: 15px;
  font-weight: 700;
}
/* 3 - WHY US*/

.why_us{
  color: var(--Light_Gray);
  background-color: rgb(74, 190, 189);
  padding: 8px 24px 24px 24px;
  height: 230px;
  /* box-sizing: border-box; */
}
.why_us h2{
  font-size: 18px;
}

li{
  list-style-type: none;
  margin-left: -40px;
  font-size: 0.85em;
  line-height: 20px;
  font-weight: 300;
}

/* 4 - FOOTER*/
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }

/*------------------------------Desktop--------------------*/
@media only screen and (min-width: 681px){
  .main_container{
    width: 636px;
    height: 476px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 160px auto 100px;
  }
  .our_community{
    grid-column: 1 /3 ;
    padding: 20px 35px 35px 35px;
    height: 218px; 
    /* box-sizing: border-box; */
  }
  .our_community h2.title{
    font-size: 1.45em;
  }
  .our_community h2.promo{
    font-size: 1.1em;
    margin-top: 25px
  }
  .our_community p{
    font-size: 1em;
    line-height: 27px;
    margin-top: 8px;
  }

  .monthly_suscription{
    background-color: var(--Cyan);
    padding: 20px 40px 40px 40px;
    height: 258px;
  }
  .monthly_suscription h2{
    font-size: 1.1em;
  }
  .monthly_suscription p{
    font-size: 0.95em;
  }
  .why_us{
    background-color: rgb(74, 190, 189);
    padding: 20px 40px 40px 40px;
    height: 258px; 
  }
}