* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background:#f5ecdb;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
}

header {
    text-align: center;
    padding: 20px 0;
}

.logo {
    width: 400px; 
    max-width: 100%;
    height: auto;
}

.menu-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.menu-section img {
    width: 80%;
    max-width: 600px;
    height: auto;
    margin-bottom:20px;
    border-radius: 15px;
}


@media (max-width: 768px) {
    .menu-section img {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .menu-section img {
        width: 100%;
    }
}
