*{
    margin : 0;
    padding: 0;
    
}
  
nav{

    background-color: black;
    color :lavenderblush;
    padding: 15px;

}

nav h1 {
    cursor: pointer; 
    transition: text-shadow 0.4s ease, color 0.4s ease;
}

nav h1:hover {
    color: #ffffff; 
    text-shadow: 0 0 10px rgba(255, 240, 245, 0.9), 
    0 0 20px rgba(255, 240,245, 0.6),
    0 0 30px rgba(255, 240, 245, 0.3);
}

ul,li,h1{
    display: inline;
}

ul{
    margin-left: 75%;
}

li{
    color: grey;
    cursor: pointer;
}

li:hover{
    color: lavenderblush; 
}

input{
    text-align: center;
    width: 60%;
    padding: 15px;
}

.searchbar{
    padding: 50px;
    text-align: center;
}

.box{
    border-color: black;
    border-width: 2px;
    border-style: solid;
    display: inline-block;
    width: 300px;
    padding: 15px;

}

.box:hover{
    background-color: black;
    color:lavenderblush;
}

.box1{
    border-color: black;
    border-width: 2px;
    border-style: solid;
    display: inline-block;
    width: 300px;
    padding: 15px;

}

.box1:hover{
    background-color: black;
    color:gold;
}

.box2{
    border-color: black;
    border-width: 2px;
    border-style: solid;
    display: inline-block;
    width: 300px;
    padding: 15px;

}

.box2:hover{
    background-color: black;
    color:lightgreen;
}

.img-wrapper {
    position: relative;
    width: 300px;
    height: 400px;
    display: inline-block;
    overflow: hidden;
}

.img-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,1) 0%, transparent 25%),
        linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 25%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;}

.box:hover .img-wrapper::after,
.box1:hover .img-wrapper::after,
.box2:hover .img-wrapper::after {
    opacity: 1; 
}        

.products{
    text-align: center;
}

.about{
    color: black;
    text-align: center;
    margin-top: 20px;
    padding: 20px;
}

.contact{
    background-color: black;
    color: lavenderblush;
    text-align: center;
    padding: 40px   
}