body {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  padding-top: 90px;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0dc;
}


#cart1, #cart2, #cart3 {
  border: 2px solid black;
  max-width: 15%;
  padding: 80px 20px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 10px;
  background-color: white;
}


#icon1, #icon2, #icon3 {
  font-size: 30px;
  margin-bottom: 10px;
}


h1 {
  font-size: 20px;
  margin-bottom: 10px;
}


p {
  font-size: 14px;
  margin-bottom: 20px;
}


button {
  background-color: black;
  color: white;
  padding: 10px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

#cart1:hover {
  background-color: #e13d7a;
  color: white;
}

#cart1:hover i,
#cart1:hover h1,
#cart1:hover p {
  color: white;
}

#cart1:hover button {
  background-color: white;
  color: #e13d7a;
}

#cart2:hover {
  background-color: #e13d7a;
  color: white;
}

#cart2:hover i,
#cart2:hover h1,
#cart2:hover p {
  color: white;
}

#cart2:hover button {
  background-color: white;
  color: #e13d7a;
}

#cart3:hover {
  background-color: #e13d7a;
  color: white;
}

#cart3:hover i,
#cart3:hover h1,
#cart3:hover p {
  color: white;
}

#cart3:hover button {
  background-color: white;
  color: #e13d7a;
}
@media (max-width: 600px) {
  body {
    flex-direction: column;
    align-items: center;
  }

  #cart1, #cart2, #cart3 {
    width: 90%; 
    max-width: 350px;
  }
}