body{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.icon{
    text-align: center;
}
.home-icon{
    height: 50px;
    margin-left: 20px;
}
.shop-container{
    background: url("images/shop-background.jpg");
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
}
.shop-container::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(3px);
    -webkit-filter: blur(3px);
    z-index: 0;
}
.shop-now-items{
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 50px ;
    
}
.shop-now-items h1{
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;
    text-shadow: 2px 2px 3px black;
}
.shop-now-items a{
    background-color: transparent;
    border: 2px solid black;
    border-radius: 30px;
    display: block;
    margin: 10px 40%;
    padding: 15px 40px;
    color: black;
    text-decoration: none;
    transition: .3s;
}
.shop-now-items a:hover{
    background-color: black;
    color: white;
}
.item2-container{
    display: flex;
    justify-content: center;
    /* align-items: center; */
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
    h1{
    text-align: center;
}
}

.item2-container a{
    display: block;
    white-space: nowrap;
    color: black;
    padding: 10px 30px;
    border: 2px solid black;
    border-radius: 20px;
    margin: 10px;
    transition: .3s;
}
.item2-container a:hover{
    color: white;
    background-color: black;
}
.other-opts{
    text-align: center; 
}





@media screen and (max-width: 770px) {
    .shop-now-items h1{
        color: white;
        font-family: 'Courier New', Courier, monospace;
        font-size: 25px;
        text-shadow: 2px 2px 3px black;
    }
    .shop-now-items a{
        border: 2px solid black;
        display: block;
        margin: 10px 25%;
        padding: 15px 40px;
    }
}




@media screen and (max-width: 430px) {
    .shop-now-items a{
        border: 2px solid black;
        display: block;
        margin: 10px 20%;
        padding: 15px 40px;
    }
}