
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #fff3e0, #ffe0b2);
    color: #4e342e;
}
header {
    background-color: #8d6e63;
    color: white;
    padding: 10px 20px;
    text-align: center;
}
nav a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    text-decoration: underline;
}
main {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}
h1, h2, h3 {
    text-align: center;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #d7ccc8;
}
footer {
    background-color: #8d6e63;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
