* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-image: url("../images/burritos.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.header {
    position: fixed;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffbe26;
    height: 18vh; width: 100vw;
    box-shadow: 0px 0px 5px #222;
    position: fixed; top: 0; left: 0;
    /* font-family: 'Kablammo', cursive; */
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
}

.header a {
    font-size: 3em;
    color: white;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#navitem:hover {
    background-color: lightgreen; /* regular orange also looks good as scond color */
    transition: background-color 300ms linear;
}

#emptybox {
    height: 60vh;
}

#section {
    background-color: lightgreen; /* regular orange also looks good as scond color */
    height: 100vh;
    width: 100vw;
}

.menu {
    width: 80%;
    margin: 250px auto 50px; /*top right bottom left */
    margin-bottom: 75px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 30px;
}

.menu img {
    width: 100%;
    cursor: pointer;
    /* if the images werent all the same size how could i limit the size? 
    I'm pretty sure i did it in my other sites*/
}

#footer {
    background-color: #ffbe26;
    height: 18vh;
    width: 100vw;
    display: flex;
    align-self: center;
    /* Make the flexbox items aligned vertically at the bottom */
    justify-content: center;
    text-align: center;
}

#footer p {
    padding: 72px;
}

table {
    background-color: rgb(240, 240, 240);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
}

th.menuitem{
    padding-left: 20px;
    text-align: left;
    font-size: 18px;
}

th.category{
    font-size: 26px;
    color: orange;
    border-bottom: 5px solid rgb(190, 190, 190);
    border-top: 5px solid white;
}

th {
    height: 60px;
}

td.description {
    padding-left: 30px;
    font-size: 18px;
}

td.price {
    font-size: 18px;
    padding-right: 20px;
    text-align: right;
}

 th.custom {
    font-size: 18px;
    padding-left: 20px;
    text-align: left;
    color: lightgreen;
 }
