    a{
        color:black;
        
    }
    a:hover{
        color:black;
        text-decoration:none;
    }
    .product_desc{
    display: flex;
    flex-direction: column;
    margin-top: 7px;
    color: black;
    }
    #product_name{
        font-size: 24px;
        font-weight: 600;
    }
    
    #product_description{
        font-size: 18px;
        text-align: justify;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* number of lines to show */
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    #product_price{
        font-size: 22px;
        font-weight: 500;
        margin-top: 20px;
    }
    #add_cart_btn{
        width: 250px;
        float: left;
        margin: 5px 0px 5px 0px;
    }