body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    background-image: linear-gradient(green,yellow)
    
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    margin: 0 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 20px;
}

.featured-products {
    background-color:white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0.1, 0.4);
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product {
    width: 250px;
    margin: 10px;
    text-align: center;
    background-color:rosybrown ;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0.1, 0.2, 0.5);
}

.product img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

button {
    background-color: green; /* Blue color */
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.categories {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.categories ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.categories li {
    margin: 10px;
}

.categories a {
    text-decoration: none;
    color: #333;
    padding: 8px 15px;
    background-color: #eee;
    border-radius: 4px;
}

footer {
    text-align: center;
    padding: 40px;
    background-color: #333;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product {
        width: 100%;
    }

    .categories ul {
        flex-direction: column;
    }
}
li{
    list-style: none;
    text-align: left;
}
.product ul li:before{
    content:"⦁";

}
.contact img{
    height: 40px;
}
.contactphoto{
    display: inline-flex;
    position: relative;left: 400px;
    margin: 20px;
    gap: 20px;
}
h6{
    text-align: center;
}
.a :hover{
    color: red;
}
    