.product-card {
  width: 35%;
  height: 460px;
  margin: 100px auto;
  border-radius: 18px;
  border: 15px solid transparent;
  border-image: url(images/border-image.png) 20 round;
  background-color: rgb(212, 211, 211);
  transition: 0.4s ease;
}

.product-card img {
  width: 400px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
}

.product-title {
  text-align: center;
  margin-top: 30px;
}

.product-description {
  max-height: 100px;
  overflow-y: scroll;
  font-size: 20px;
  margin: 30px;
}

.product-price {
  margin-left: 80%;
  font-size: 25px;
  transition: 0.4s;
  opacity: 0;
}

.product-card:hover {
  height: 500px;
}

.product-card:hover span {
  opacity: 1;
}
