/* Global styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.container {
	max-width: 960px;
	margin: 3px auto;
	padding: 2px;
}

header {
	color: #ffffff;
	padding: 3px 0;
	text-align: center;
	margin-bottom: 1px;
}

footer {
  background-color: #343a40;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Product styles */
.product {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.product img {
  max-width: 75%; /* Ensure image doesn't exceed its container */
  height: auto;
  transition: transform 0.3s ease;
}



.product:hover .overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.product-description {
  margin-top: 20px;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .product {
    margin-bottom: 10px;
  }
}
