body {
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: lightgrey;
    width: 650px;
    margin: auto;
}

header {
    background-color: orange;
    color: white;
    text-align: center;
    border: 2px solid white;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.8);
    padding-bottom: 24px;
    margin-top: 16px;
}

footer {
    text-align: center;
    color: gray;
    padding: 16px;
    margin-top: 16px;
}

h1 {
    margin-bottom: 0px;
}

h2 {
    color: darkslategray;
    border-bottom: 1px solid darkgray;
    margin-top: 32px;
}

table {
    border: 2px solid black;
    border-collapse: collapse;
    background-color: white;
    width: 100%;
}

th {
    background-color: blue;
    color: white;
    text-align: left;
}

#mains th {
    background-color: cadetblue;
}

#desserts th {
    background-color: aqua;
}

th, td {
    border: 1px solid lightgray;
    padding: 8px;
}

.price {
    color: orangered;
    font-weight: bold;
    text-align: right;
}