
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

header {
    background-color: #ff6347; 
    padding: 20px;
    text-align: center;
    color: white;
}

h1 {
    margin: 0;
    font-size: 2.5em;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    text-align: center;
}

/* Slider Styles */
#slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

.slider-container {
    display: flex;
    transition: transform 1s ease;
}

.slider-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}


.food-item {
    display: inline-block;
    width: 30%;
    margin: 10px;
}

.food-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.food-item p {
    font-size: 1.1em;
    margin-top: 10px;
    font-weight: bold;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;}