strong {
  font-size: 30px;
}
img {
  max-width: 400px;
}
a {
  padding-left: 10px;
  padding-top: 10px;
}

.container-home {
  display: flex;
  gap: 130px;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.container-home div:last-child {
  padding-bottom: 30px;
  align-items: center;
}
/* LEFTSIDE */ 

.container-hero-leftside {
  display: flex;
  flex-direction: column;
  max-width: 580px;
}

.container-hero-leftside h1 {
  font-size: 3.25rem
}
.container-hero-leftside p {
  max-width: 500px;
  text-align: justify;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 50px;
  padding-top: 20px;
}

/* RIGHT SIDE  */ 

.container-hero-rightside {
  display: flex;
  flex-direction: column;
  max-width: 800px;
}

.container-hero-rightside h3 {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 10px;
}
.container-hero-rightside p {
  padding-left: 30px;
  padding-top: 15px;
  font-size: 1.4rem;
  max-width: 270px;
  text-align: justify;
}
.container-hero-rightside img {
  padding-right: 30px;
  padding-bottom: 40px;
}
/* UPPER AND LOWER SIDE  */ 
.container-hero-rightside .right-upperside, 
.container-hero-rightside .right-lowerside {
  display: flex;
  padding-bottom: 40px;
  flex-direction: row;
}



/* BTN */ 

.home-btn a {
  display: inline-block;
  background: linear-gradient(135deg, #F4BEA2, #E0B218);
  padding: 8px 12px;
  margin-right: 10px;
  border-radius: 4px;
  opacity: 0.7;
  color: black;
  transform: scale(1);
  transition: 0.5s;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);;
  font-size: larger;
}

.home-btn a:hover {
  transform: scale(1.1);
}

/* MEDIA QUERIS */ 
@media only screen and (min-width: 320px) and (max-width: 500px){
  body {
    background-color: lightblue;
    margin-left: 10px;
    margin-right: 10px;
  }


  .container-home {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .container-home p {
    font-size: 1.05rem;
  }
  .container-home h1 {
    font-size: 1.8rem;
  }
  .container-home img {
    max-width: 300px;
    margin: 0 auto;
    padding-left: 20px;
  }

  .container-hero-leftside p {
    font-size: 1.2rem;
  }
  .container-home-rightside {
  display: flex;
  flex-direction: column;
  max-width: 760px;
}

  .right-upperside p, h2 {
  padding-right: 30px;
}
.right-lowerside p, h2 {
  padding-right: 30px;
}

.container-hero-rightside .right-upperside, 
.container-hero-rightside .right-lowerside {
  display: flex;
  flex-direction: column;
}

.container-hero-rightside p {
  max-width: 320px;
}
.container-hero-rightside h3 {
  display: flex;
  font-size: 1.8rem;
  text-align: center;
}
 
.home-btn {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  gap: 10px;
  margin: 0 auto;
  justify-content: space-between;
}
}

