body {
  font-family: "Capriola", sans-serif;
  background-color: #f3dff0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
#container {
  padding-top: 45px;
}
.price {
  font-size: 18px;
  font-weight: bold;
  color: #8c7db1;
  margin-top: 10px;
}
.product-card {
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 10px;
}
.product-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(181, 163, 224, 0.9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  text-align: center;
  flex-direction: column;
}
.product-card:hover .product-info {
  opacity: 1;
}
.product-card:hover img {
  opacity: 0.3;
}
.product-info button {
  margin-top: 10px;
  z-index: 2;
}
.product-card .btn {
  position: relative;
  z-index: 1;
}

footer {
  background-color: #8c7db1;
  color: white;
  text-align: center;
  padding: 10px;
  width: 100%;
  bottom: 0;
}

@media (max-width: 768px) {
  .product-info {
    display: hide;
  }
  .product-card {
    margin-bottom: 20px;
  }
}
