body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #e3e0e5; /* A shade of purple */
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0;
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 3px;
}

header h2 {
    margin: 5px 0 0;
    font-size: 1.2em;
    font-style: italic;
    opacity: 0.9;
}

main {
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background-color: rgb(221, 218, 221);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.menu-category {
    margin-bottom: 30px;
    border-bottom: 2px solid #1d1919;
    padding-bottom: 20px;
}

.menu-category:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-category h3 {
    background-color: #9c27b0; /* A slightly lighter purple */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8em;
    text-align: center;
    letter-spacing: 1px;
}

.menu-items {
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #000000;
    font-size: 1.1em;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item span:first-child {
    font-weight: bold;
    flex-grow: 1; /* Allows the name to take up available space */
    color: #080808;
}

.menu-item span:last-child {
    color: #080808; /* Price color */
    font-weight: bold;
    min-width: 70px; /* Ensure price column has a minimum width */
    text-align: right;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    background-color: #6a1b9a;
    color: white;
    font-size: 0.9em;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5em;
    }

    main {
        margin: 10px;
        padding: 15px;
    }

    .menu-category h3 {
        font-size: 1.5em;
    }

    .menu-item {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2em;
    }

    .menu-category h3 {
        font-size: 1.3em;
        padding: 8px 10px;
    }

    .menu-item span:last-child {
        min-width: 50px;
    }
}