.category{
    text-align: center;
    color: black;
    font-weight:bolder;
}
.section1{
    display: flex;
    flex-wrap: nowrap;
    gap: 70px;
    /* background-color: rgba(241, 248, 181, 0.395); */
    padding:10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    margin-bottom: 50px;
}
.section1::-webkit-scrollbar {
    display: none;
}
.section1 article {
    flex: 0 0 auto;   
}
.Products{
    height:200px;
    width:200px;
    border-radius:10px;

    opacity:0;
    transform: translateY(80px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.section1 article{
    overflow: hidden;   /* Prevent overflow */
}
.section1.show .Products{
    opacity:1;
    transform: translateY(0) scale(1);
}
.section1 article:hover .Products{
    transform: scale(1.1);
}
.item_name{
    text-align: center;
    color:black;
    font-weight: 500;
    font-size: 1vw;
}
@keyframes up {
    from{
        transform: translateY(100px)
    }
    to{
        transform: translateY(0)
    }
    
}
@media screen and (max-width:426px) {
    .Products{
        height: 100px;
        width: 100px;
    }
    .item_name{
        font-size: 2vw;
    }
    
}
@media screen and (min-width:426px) and (max-width:769px) {
    .Products{
        height: 150px;
        width: 150px;
    }
    .item_name{
        font-size: 2vw;
    }
}




