*{
    margin: 0;
    padding: 0;
}
nav{
    background-color: black;
    color: aliceblue;
    padding: 15px;
}
ul,li,h1{
    display: inline-block;
}

ul{
    margin-left: 50%;
}
li{
    color: gray;
    cursor: pointer;
}
li:hover{
    color: aliceblue;
}

input{
    width: 60%;
    padding: 15px;
    margin: 20px;
}
.searchbar{
    padding: 50px;
    text-align: center;
}
.box{
    border-color:black ;
    border-width: 5px;
    border-style: solid;
    display: inline-block;
    width: 220px;
}

    .box:hover{
        background-color: black;
        color: aliceblue;
    
}
.products{
    text-align: center;
}
.about{
    text-align: center;
    padding: 20px;
    font-size: large;
    margin-top: 20px;
}
.Contact{
    text-align: center;
    background-color: black;
    color: aliceblue;
}

.Contact:hover{
    background-color: darkgreen;
}