*{
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    box-sizing: border-box;
}
h1{
    font-size: 3.5rem;
    text-align: center;
    margin: 50px 0;
}
#category{
    text-align: center;
}
#cards-container{
    /* background-color: aquamarine; */
    margin: 6%;
    /* height: 60vh; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.product-card{
    width: 18rem;
    height: 35rem ;
    overflow:auto;
    padding: 10px;
    border: 0;
    border-radius: 15px;
    box-shadow: 2px 2px 15px 1px rgba(0, 0, 0, 0.342);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 5px;
    p{
            overflow-wrap: break-word;
    }
}