@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap');

/* standard page rules */
body {
    background-color: rgba(153, 139, 15, 0.5);
    font-family: 'Fira Sans',sans-serif;
}

/* Text rules*/
h1 {
    color: var(--color-accent1);
    font-size: 5rem;
    text-align: center;
    text-shadow: 1px 1px 0px #000;
}

/* Table Styling */
table.menu {
    border: 1px solid black;
    width: 90%;
    margin: 20px auto;
    background-color: salmon;
    font-size: 2rem;
    border-collapse: collapse; /* force tables to share borders */
}

td {
    text-align: center;
}

td, th {
    
    padding: 4px;
}


tr:nth-child(odd)  {
    background-color: salmon;
    
    border-bottom:3px solid #000;
}
tr:nth-child(even)  {
    border-bottom:3px solid #000;
    font-weight: bold;
}

.head {
    font-weight: bold;
    font-size: 2em;
}
tr td span {
    font-style: italic;
    text-decoration: underline;
}