
body, h1, ul, li, p {
    margin: 0;
    padding: 0;
}


header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

header h1 {
    font-size: 24px;
    margin: 0;
}


nav {
    background-color: #444;
    text-align: center;
    position: sticky; /* Make the navigation bar sticky */
    top: 0; /* Stick to the top of the viewport */
    z-index: 100; /* Ensure it's above other content */
}

/* Style the navigation bar links */
nav ul {
    list-style: none;
}

nav li {
    display: inline;
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

nav a:hover {
    color: #66ccff; /* Change color on hover */
}

/* Main content section */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-size: 16px;
}

/* Style the food container */
.food-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
}

/* Style individual food items */
.food-item {
    width: 45%;
    padding: 20px;
    margin: 10px;
    text-align: center;
    background-color: #f4f4f4;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block; /* Display side by side */
    vertical-align: top; /* Align to the top */
}

.food-item img {
    max-width: 100%;
    border: 1px solid #ddd;
}

.food-item h3 {
    font-size: 20px;
    margin: 10px 0;
}

.food-item p {
    font-size: 16px;
    margin: 10px 0;
}
