.menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-header {
    text-align: center;
    margin-bottom: 48px;
}

.menu-header > h1 {
    font-family: ui-sans-serif;
    font-size: 32px;
    font-weight: normal;
}

.menu-header > p {
    color: #ffe5bc;
}

.menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.menu-item > img {
    height: 400px;
    width: 300px;
    object-fit: cover;
    border-radius: 4px;
}

.menu-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.menu-info > p {
    font-size: 20px;
    color: #ffe5bc;
}

.menu-item > button {
    padding: 12px;
    font-size: 14px;
    color: #ffe5bc;
    background: none;
    border: 1px solid #ffe5bc;
    cursor: pointer;
    width: 100%;
}

dialog {
    border: none;
    border-radius: 10px;
    padding: 16px;
    max-width: 350px;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1c1b1b;
    color: white;
}

dialog h2 {
    margin-bottom: 0.5em;
}

dialog p {
    margin-bottom: 1em;
}

dialog button {
    background-color: #ffe5bc;
    border: none;
    padding: 8px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.4);
}
