a {
    color: #000000;
}

.flexspacearound {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.products {
    align-items: center;
    text-align: center;
    height: auto;
    padding: 20px;
}

.product {
    width: 240px;
    height: auto;
    overflow:hidden;
    margin: 20px;
    transition: 0.5s;
    border-radius: 20px;
}

.product:hover {
    box-shadow: 4px 4px 50px #8c8c8c;
    transform: translateY(-15px);
}

.product .productimg img {
    width: 240px;
    height: 300px;
    margin-bottom: 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.product .productdetials h4 {
    font-size: 25px;
    /*margin-bottom: 5px;*/
    color: #fff;
    background: #393185;
    padding:5px;
    text-transform:uppercase;
}

.product .productdetials h5 {
    color: #000000;
}

@media screen and (max-width:280px) {
    .product {
        width: 250px;
    }
    .product .productimg img {
        width: 250px;
        height: 400px;
    }
}