#app{
    position: relative;
    z-index: 1;
  }
  
  #app::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("https://i.imgur.com/CcnPhLx.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
  }

.shop-main{
    color: var(--blue);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.shop-main>div{
    display: flex;
    margin: 20px 0;
}

.shop-product{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30%;
    margin: 10px 20px;
}

.shop-product img{
    width: 100%;
    margin: 10px;
}

.shop-product-info>ul{
    margin: 15px 0 30px 0;
    font-size: 1.5em;
}

.shop-product-info>h2{
    font-size: 2rem;
}

.shop-product-info>a{
    color: #FFFF;
    background-color: var(--blue);
    padding: 5px 15px;
    font-size: 1.8em;
    border-radius: 5px;
}


/* RESPONSIVE */

@media screen and (max-width: 1200px){
    #app-homepage::before{
        background-image: url("https://i.imgur.com/YiVExs9.png") !important;
    }
}

@media screen and (max-width: 1024px){
    #app-homepage::before{
        background-image: url("https://i.imgur.com/AfYWrAK.png") !important;
    }
}

@media screen and (max-width: 900px){
    .shop-product{
        width: 90%;
    }
    #app-homepage::before{
        background-image: url("https://i.imgur.com/5hzmoaf.png") !important;
    }
}


@media screen and (max-width: 500px){
    #app-homepage::before{
        background-image: url("https://i.imgur.com/x3W4D4c.png") !important;
    }
}

@media screen and (max-width: 360px){
    #app-homepage::before{
        background-image: url("https://i.imgur.com/ju9Oviz.png") !important;
    }
}

@media screen and (max-width: 320px){
    #app-homepage::before{
        background-image: url("https://i.imgur.com/dJpy6QS.png") !important;
    }
}
