*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 
.text-center{
    text-align: center;
}
.flex{
    display: flex;
}
.row{
    display: flex;
    flex-wrap: wrap;
}

.align-items-center{
    align-items: center;
}
.justify-between{
    justify-content: space-between;
}
.justify-center{
    justify-content: center;
}
 */
 /* body{
    font-family: 'Poppins', sans-serif;
    background-color: rgb(247, 250, 250);
} */

#box{
    display: grid;
    grid-template-columns: repeat(4, 1fr);

}
#parent_box{
    /* border: 1px solid black; */
    box-shadow:0 0 15px rgba(50, 50, 50, 0.3);
    /* width: 300px;
    height:450px; */
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    transition: all 0.5s;
    overflow: hidden;
}
#parent_box:hover{
    box-shadow:0 0 20px rgba(50, 50, 50, 0.3);
    transform: translateY(-5px);
}
#parent_box img{
    transition: all 0.5s;
}

#parent_box img:hover{
    transform: scale(1.04);
}

img{
   width: 100%;

}
#title1, #price1, #category1{
    background-color: transparent;
    padding:  5px 10px;
    width: 90%;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 5px;
    box-shadow:0 0 1px rgba(0, 0, 0, 0.2);

}
h2, h3,p{
    text-align: center;
    font-size: 20px;
}
#cart{
    font-size: 20px;
}
.logo{
    width: 60px;
    height: 60px;
}
#navbarNav ul li a{
    color: #68c9f0;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.5s;
}
#navbarNav ul li a:hover{
    color: #069df5;
    font-weight: 700;
}

#nav{
    background-color: #F7CF9B;
}