.product-wrapper{
    text-align: center;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.product-wrapper:hover{
    transform: translateY(-2%);
}

.product-image{
    min-height: 250px;
    border-radius: 8px;
}

.product-url{
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.product-url:hover{
    color: #BBB;
}

.product-title{
    font-size: 1.2rem;
    font-weight: bolder;
}