/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#333;
    padding: 10px 20px;
}

.navbar .logo img {
    height: 40px;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Description section */
.description {
    text-align: center;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    max-width: 800px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.description h1 {
    color: #353434;
}

.products h2 {
    text-align: center;
    color: #353434 ;
    margin-bottom: 20px;
}

/* Product grid styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    justify-items: center;
}

.product-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 90%;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-item img {
    width: 100%;
    max-width: 200px;
    border-radius: 8px;
}

.product-item h3 {
    margin: 10px 0 5px;
    color: #333;
}

footer {
    text-align: center;
    padding: 10px 20px;
    background-color: #b5b5b5;
    color: white;
    margin-top: 20px;
}
