*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    background-color: aliceblue;
}

header{
    background-color: black;
    color: white;
    text-align: center;
    padding: 16px;
}

nav{
    display: flex;
    justify-content: center;
    background-color: rgb(108, 109, 109);
    padding: 10px;

}

nav a{
    color: yellow;
    margin-right: 16px;
    text-decoration: none;
}

nav a:hover{
    color: red;
}

ul{
    list-style-type: none;
}

.menu li{
    display: inline-block;
    width: 150px;
    position: relative;
}

.submenu{
    display: none;
    position: absolute;
    background-image: linear-gradient(to right, black, white);
}

.menu li:hover .submenu{
    display: block;
}

.submenu li{
    border: 1px dotted gray;
}

.products{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    padding: 20px;
    
}

.product{
    background-color: white;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 0 10px lightgray;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.product img{
    width: 100px;
    height: 100px;
}

.product h3{
    font-style: bold;
    margin-top: 10px;
}

.product p{
    font-style: italic;
    opacity: 70%;
    padding: 10px;
}

.product button{
    padding: 8px;
    background-color: red;
    border: 1px solid lightgray;
    border-radius: 8px;
}

.product button:hover{
    transform: scale(1.05);
    transition: transform 0.3s;
}