* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
}

header {
    background-color: #333;
    color:  white;
    padding: 16px;
    text-align: center;
}


/*menu*/
nav {
    display: flex;
    justify-content: center;
    background-color: #dbdbdb;
    padding: 8px;
}

nav a {
    color: rgb(4, 128, 66);
    margin: 0  16px;
    text-decoration: none;
}

nav a:hover {
    color: rgb(73, 180, 59);
}

ul {
    list-style-type: none;
}

.menu li {
    display: inline-block;
    width: 150px;
    position: relative;
}

.menu li .submenu {
    display: none;
    position: absolute;
    background-image: linear-gradient(to left, green, white);
    border:  0.5px dotted white;
}

.menu li .submenu li {
    padding-top: 2px;
    padding-bottom: 2px;
    border: 0.5px dashed white;
}

.menu li:hover .submenu {
    display: block;
}
/*end menu*/


.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 30px;
}

.product {
    background-color: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product img {
    width: 100%;
    height: 180px;
    object-fit: fill;
    border-radius: 4px;
}

.product h3 {
    margin: 16px 0 8px;
    font-size: 18px;
}

.product p {
    color: #888;
}

.product button {
    margin-top: auto;
    padding: 8px 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.product button:hover {
    background-color: #219150;
}

