* {
    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;
    z-index: 1;
}

.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;
}

/* not sure how to make text, images, and section responsive
    I've done it before but i don't have time to figure it out */
#section {
    background-color: lightgreen; /* regular orange also looks good as scond color */
    height: 85vh;
    width: 100vw;
    height: fit-content;
    padding-top: 40px;
    padding-bottom: 40px;
}

#section h1 {
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 7em;
    color: white;
    text-shadow: 6px 6px 2px green;
}

#section a {
    font-family: 'PT Sans Narrow', sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-size: 7em;
    color: white;
    text-shadow: 6px 6px 2px green;
    justify-content: center;
    align-items: center;
    display: flex;
    text-decoration: none;
}

#section a:hover {
    color: #ffbe26;
}

/*
#section div {
    border: 2px solid red;
    height: 200px;
    width: 400px;
    justify-content: center;
    align-items: center;
    display: inline-block;
}
*/

#section img {
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(-12deg); 
    display: block;
    margin-bottom: -40px;
    margin-top: -40px;
}

#emptybox {
    height: 65vh;
}

.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;
}