.section-1{
  background-size: cover;
  background-position: center;
}
.title{
  letter-spacing: 2px;
  font-size: 3rem;
}

.section-2{
  min-height: 100dvh;
}

.product-card{
  width: 300px;
  height: auto;
}
.product-card img{
  width: 100%;
  height: 400px;
  border-radius: 10px;
  object-fit: cover;
}
.product-card h5{
  background-color: rgba(199, 148, 45, 0.7);
}

@media (max-width: 992px){
  .title{
    font-size: 2rem;
    text-align: center;
  }
}

@media (max-width: 576px){
  .section-2{
    min-height: 70dvh;
  }
  .product-card{
    width: 150px;
    height: auto;
  }
  .product-card img{
    width: 100%;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
  }
  .product-card h5{
    font-size: 1rem;
  }
}

@media (max-height: 576px) and (orientation: landscape) {
  .section-2{
    min-height: 70dvh;
  }
  .product-card{
    width: 150px;
    height: auto;
  }
  .product-card img{
    width: 100%;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
  }
  .product-card h5{
    font-size: 1rem;
  }
}