* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}


.container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    margin: 15px;
    padding-top: 20vh;
}

body {
    font-family: sans-serif;
    color: #222;
    background-image: url(noodles.jpg);
    background-size: cover;
    background-position: center;
}

header {
    background-color: #FFF; 
    width: 100%; height: 20vh;
    position: fixed; top: 0; left: 0;
    box-shadow: 0 2px 5px #222;
    background-image: url(j3.jpg);
    background-size: cover;
    background-position: center;
}



h1 {
    color: white;
    text-align: center;
    font-size: 20px;
    padding-bottom: 10px; padding-top: 10px;
}


h2 {
    text-align: center;
    color: white;
    text-shadow: 3px 2px #222;
    letter-spacing: 8px;   
    font-size: 40px; 
    border-top: 4px solid #222;
    border-bottom: 4px solid #222;
    margin-bottom: 5px;
    margin-top: -5px;

    

}


nav {
    text-align: center;
}


nav > a {

    color:white;
    font-weight: bold;
    text-decoration: none;
    transition: color 300ms linear;

}

nav > a:hover {
    color: gray;
}

.material-symbols-outlined {
    font-variation-settings:
  'FILL' 30,
  'wght' 1000,
  'GRAD' 0,
  'opsz' 48;
    font-size: 50px;
    text-shadow: 2px 2px gray;
    letter-spacing: 50px;
}


table {
    background-color: whitesmoke;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
th.item{
    padding-left: 30px;
    text-align: left;
}

th.type{
    font-size: 20px;
    color: darkred;
    border-bottom: 4px solid white;
    border-top: 4px solid white;
}

th {
    height: 50px;
}
td.description {
    font-style: italic;
    padding-left: 30px;
}
td.price {
    font-weight: bold;
    padding-right: 30px;
}
 th.special{
    padding-left: 30px;
    text-align: left;
    color: green;
 }