body{
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}
.icon{
    text-align: center;
}
.home-icon{
    height: 50px;
    margin-left: 20px;
}
.container{
    background: url("images/shop-background.jpg");
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    position: relative;
}
.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;
}
.items{
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 50px ;
    
}
.items h1{
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px;
    text-shadow: 2px 2px 3px black;
}
.items a{
    border: 2px solid black;
    border-radius: 30px;
    display: block;
    margin: 10px 40%;
    padding: 15px 40px;
    color: black;
    text-decoration: none;
    transition: .3s;
}
.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;
}
footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: black;
}
.quick-links{
    color: white;
    text-align: center;
    padding: 20px;
    text-align: left;
    margin-left: 10%;
}
.quick-links p{
    margin-bottom: 30px;
    font-size: 23px;
}
footer a{
    display: block;
    padding-bottom: 30px;
    color: rgb(98, 129, 98);
    font-size: 17px;
}
.subscribe{
    color: white;
    padding: 20px;
    text-align: right;
    margin-right: 10%;
}
.subscribe p{
    margin-bottom: 30px;
    font-size: 23px;
}
.subscribe input{
    height: 40px;
    background-color: transparent;
    border-top: none;
    border-right: none;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    color: white;
}
.subscribe input:focus{
    border: none;
}
.subscribe button{
    height: 40px;
    width: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    background-color: transparent;
    border-top: none;
    border-left: none ;
    color: white;
    transition: .3s ease;
}
.subscribe button:hover{
    background-color: white;
    border-top: none;
    border-left: none ;
    color: black;
}





@media screen and (max-width: 770px) {
    .items h1{
        color: white;
        font-family: 'Courier New', Courier, monospace;
        font-size: 25px;
        text-shadow: 2px 2px 3px black;
    }
    .items a{
        border: 2px solid black;
        display: block;
        margin: 10px 25%;
        padding: 15px 40px;
    }
    footer{
        display: block;
        align-items: normal;
        justify-content: center;
        background-color: black;
    }
    .quick-links{
        color: white;
        text-align: center;
        padding: 20px;
        text-align: left;
        margin-left: 10%;
    }
    .quick-links p{
        margin-bottom: 30px;
        font-size: 19px;
    }
    footer a{
        display: block;
        padding-bottom: 30px;
        color: rgb(98, 129, 98);
        font-size: 15px;
    }
    .subscribe{
        display: block;
        color: white;
        padding: 20px;
        text-align: right;
        margin-right: 10%;
    }
    .subscribe p{
        margin-bottom: 30px;
        font-size: 18px;
    }
    .subscribe input{
        height: 40px;
        background-color: transparent;
        border-top: none;
        border-right: none;
        border-left: 2px solid white;
        border-bottom: 2px solid white;
        color: white;
    }
    .subscribe input:focus{
        border: none;
    }
    .subscribe button{
        height: 40px;
        width: 20px;
        border-right: 2px solid white;
        border-bottom: 2px solid white;
        background-color: transparent;
        border-top: none;
        border-left: none ;
        color: white;
        transition: .3s ease;
    }
    .subscribe button:hover{
        background-color: white;
        border-top: none;
        border-left: none ;
        color: black;
    }
}




@media screen and (max-width: 430px) {
    .items a{
        border: 2px solid black;
        display: block;
        margin: 10px 20%;
        padding: 15px 40px;
    }
}