body{
    font-family: Arial;
    margin: 0;
}

nav{
    display: flex;
    justify-content: space-between;
    background: #333;
    color: white;
    padding: 10px 20px;
}

nav ul{
    display: flex;
    list-style: none;
}

nav ul li{
    margin: 0 10px;
}

nav ul li a{
    color: white;
    text-decoration: none;
}

.hero{
    height: 90vh;
    background: url('https://www.concretecms.com/application/files/9417/1778/2239/Restaurant_Websites.jpg') no-repeat center;
    background-size: cover;
    color: white;
    text-align: center;
    padding-top: 200px;
    margin-left: 2px;
}

.hero button{
    padding: 10px 20px;
    background: orange;
    border: none;
    cursor: pointer;
}

section{
    padding: 40px;
    text-align: center;
}

.menu-items{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.item{
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    border-radius: 50px;
    color: black;
    background-color: blue;
}


.gallery img{
    margin: 10px;
    border-radius: 10px;
    width: 180px;
}

form input{
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 200px;
}

form button{
    padding: 10px 20px;
    background: green;
    color: white;
    border: none;
}

