body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: url('https://suret.pics/uploads/posts/2023-09/1695459241_1-2.jpg') no-repeat center center/cover;
  color: #333;
}

.container {
  background-color: rgba(255, 255, 255, 0.85);
  margin: 40px auto;
  width: 90%;
  max-width: 1000px;
  padding: 20px 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

h1 {
  text-align: center;
  color: #2e7d32;
  margin-bottom: 40px;
}

.flower {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: 0.7s ease;
}

.flower:hover  {
  transform: scale(1.02);
  box-shadow: 0px 0px 10px 5px #2e7d32;
  color: orangered;
  /* box-shadow: 0px 0px 1000px 700px black; */
}

.flower img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  transition-duration: 1s;
}

.flower img:hover {
  box-shadow: 0px 0px 1000px 700px black;
}

.info {
  padding: 20px;
}

.info h2 {
  color: #388e3c;
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
  color: #d32f2f;
  margin-top: 10px;
}

@media screen and (max-width:400px) {
  grid-template-columns: 1fr 1fr
  grid-template-rows: 100px 100px 1fr
  grid-template-areas: 
    "bola1 bola1"
    "bola3 bola4"
    "bola3 bola5";
}
