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

header {
    text-align: center;
    background-color: #333;
    color: white;
}

.banner {
    position: relative;
}

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

.banner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
}

nav ul {
    list-style-type: none;
    background: #444;
    padding: 10px;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
}

.about, .menu {
    margin: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
}

.about img, .menu img {
    width: 100%;
    border-radius: 10px;
}

.menu-item {
    margin: 10px;
    text-align: center;
}

.menu-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

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