/*************** formatting  ***************/
*{
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    box-sizing: border-box;
}
.container{
    width: 80%;
    margin: 0 auto;
}

/***************styles for product section ******************/
#products{
    margin: 30px 0;
}

/***************styles for flowrs, edibles vapour named divs ******************/
.flowers, .edibles, .vapour{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/***************styles for product card starts******************/
.product-card{
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 160px;
    height: fit-content;
    background-color: #fafafa;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px #dddbdb;
    
}
.product-card img{
    max-width: 160px;
    object-fit: cover;
    padding: 10px;
}
.product-card:hover{
    box-shadow: 4px 4px 4px #d3cfcf;
}
.product-card button{
    background-color: #067903;
    color: aliceblue;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}
.product-card button:hover{
    color: #011a08;
    background-color: yellow;
    font-weight: bold;
}
.product-card p{
    margin: 5px 0;
}
/***************styles for product card ends ******************/

/***************styles for product h1******************/
h1{
    color: #011a08;
    font-size: larger;
    text-align: center;
    padding: 20px 0 10px;
    text-transform: uppercase;
}