.product-category-card {
  background-color: white;
  border-radius: 10px;

  width: 290px;
  height: 250px;

  text-decoration: none;
  overflow: hidden;
}

.product-category-card-title-container {
  width: 290px;
  height: 90px;

  margin: 0px;
  padding: 17px;
  padding-left: 13px;
  display: flex;
  align-items: center;

  p {
    width: 100%;
    text-align: center;
    font-family: 'lobster';
    font-size: 22px;
    color: #094DA4;
  }
}

.product-category-card-image-container {
  width: 290px;
  height: 160px;
  overflow: hidden;

  img {
    width: 290px;
    height: 160px;
    object-fit: cover;

    margin: 0px;
    padding: 0px;
  }
}

.product-category-card:hover .product-category-card-image-container {
  img {
    transition: transform 0.3s ease;
    transform: scale(1.1);
  }
}