body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #f4f4f4;
}
h1 {
  text-align: center;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.product {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 10px #ccc;
  width: 200px;
  text-align: center;
}
.product img {
  max-width: 100%;
  height: auto;
}