@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

nav{
    margin-top: 0;
}

.gallery{
    
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 40px auto;
    padding-top: 100px;
}

.gallery ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.gallery ul li{
    list-style: none;
    background: #eee;
    padding: 8px 20px;
    margin: 5px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.5s;
}
.gallery ul li.active{
    background: #F49D6E;
    color: #fff;
}

.product{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.product .itemBox{
    position: relative;
    margin: 5px;
    padding: 5px;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 220px;
}

.product .itemBox img{
    position: relative;
    width: 400px;
    height: auto;
    transition: 0.7s;
}

.product .itemBox p{
    position: absolute;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    text-decoration: none;
    z-index: 1000;
    margin-top: 22%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    opacity: 0;
    transition: 0.7s;
}

.product .itemBox:hover img{
    filter: blur(5px);
}

.product .itemBox:hover p{
    opacity: 1;
}


.btnreturn{
    text-decoration: none;
    background: #eee;
    padding: 8px 20px;
    margin: 10px;
    top: 15px;
    letter-spacing: 1px;
    color: #000;
    transition: 0.5s;
}
.btnreturn:hover{
    color: white;
    background-color: #F49D6E;
}

@media screen and (max-width: 900px) {
    .product .itemBox img{
        width: 100%;
        height: auto;
    }
}

/* img{
    width: 400px;
    height: auto;
} */