body{
    font-family: Arial, Helvetica, sans-serif;
}
.flex{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(5,11,11,1) 7%, rgba(13,33,36,1) 14%);
    height: 150px;
}
.d-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-right: 200px;
}
.shop{
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    animation: 4s anime infinite;
    cursor: pointer;
}
@keyframes anime{
    100%{
        color: blue;
    }
    70%{
        color: yellow;
    }
    50%{
        color: #fff;
    }
}
#a:hover{
    background-color: #fff;
    color: #000;
    padding: 10px 30px;
    transition: 0.3s;
}
.s-products{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.product-hunt{
    border: 1px solid none;
    border-radius: 20px;
    box-shadow: 0 0 25px #000, 0 0 25px #000,0 0 25px #000, 0 0 25px #000;
}