body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #150202;
}

nav {
    background: #ff4d4d;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h2 {
    color: rgb(23, 14, 14);
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url("https://source.unsplash.com/1600x900/?restaurant") center/cover;
    height: 90vh;
    color: white;
    text-align: center;
    padding-top: 200px;
}

.btn {
    background: white;
    color: #ff4d4d;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    padding: 20px;
}

.food-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.food-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

button {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.cart, .content {
    padding: 20px;
    background: white;
    margin: 20px;
    border-radius: 10px;
}

.title {
    text-align: center;
    margin-top: 20px;
}