* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    max-width: 100vw; min-height: 100vh;
}

.container {
    width: 100%;
    background-color: #bbb;
}

header {
    width: 100%; height: 12.5vh;
    background-color: #111;
    background-image: url(/images/wk07-sun48.svg); background-repeat: no-repeat; 
    background-position-y: center;
    color: #eee;
    font-family: 'Lora', serif;
    position: fixed;
    z-index: 400;
}

h1 {
    margin-left: 5vw;
    padding-top: 3vh;
    position: relative;
}

header ul {
    width: 40vw; min-width: 375px; height: 10.5vh;
    display: block; position: absolute; top: 1vh;
    display: flex; justify-content: space-around;
    margin-left: 50vw;
}

header li {
    list-style-type: none;
    padding-top: 3vh;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1.2em;
}

header a:link, :visited {
    text-decoration: none;
    color: #eee;
    padding: 5px;
    border-radius: 10px;
    transition: 300ms ease-in-out;
}

nav a:hover {
    background-color: #555;
    padding: 7px;
}

.order a {
    background-color: red;
    font-size: 1.25em;
    font-weight: 500;
}

.order a:hover {
    outline: 2px solid red;
}

h2 {
    transform: translateY(12.5vh);
    color: #111;
    text-align: center;
    font-family: 'Lora', serif;
    font-size: 2.6em;
    padding: 24px;
}

.menu {
    min-height: 80vh;
    display: grid;
    transform: translateY(12.5vh);
    margin: 0 8vw;
    border: 5px solid yellow;
    grid-template: 0.5fr 0.33fr 1fr 1fr 1fr 0.33 fr 1fr 1fr 1fr 0.33fr / repeat(2, 1fr);
}

.menu-head, .panini, .salad {
    text-align: center;
    background-color: #eee;
    padding: 10px;
    font-family: 'Lora', serif; font-size: 1.4em; font-weight: bold;
    border-top: 1px dotted darkolivegreen; border-bottom: 1px dotted darkolivegreen;
}

.menu-head {
    grid-row-start: 1; grid-row-end: 2;
    grid-column-start: 1; grid-column-end: 3;
}

.menu-head h3, h4 {
    padding: 12px;
}

.menu-head h3, .panini h3, .salad h3 {
    size: 1.4em;
}

.menu-head p {
    font-size: 0.7em;
    color: darkorange;
}

.panini {
    grid-row-start: 2; grid-row-end: 3;
    grid-column-start: 1; grid-column-end: 3;
}

.salad {
    grid-row-start: 6; grid-row-end: 7;
    grid-column-start: 1; grid-column-end: 3; 
}

.grid_item {
    background-color: #eee;
    min-height: 160px;
    padding: 10px;
    font-size: 1.4em;
    font-weight: bold;
}

.price {
    float: right;
    margin: 12px 36px;
    font-size: 0.9em;
    font-family: 'Lora', serif;
}

.grid_item h4 {
    font-family: 'Lora', serif;
}

.ingredients {
    margin: 12px;
    font-size: 0.8em;
    font-family: 'Gill Sans MT';
    font-weight: lighter;
}

.special, .special-price {
    color: darkorange;
}

.diet {
    grid-column-start: 1; grid-column-end: 3;
    padding: 24px;
    background-color: #eee;
    text-align: center;
    font-style: italic;
    font-family: 'Lora', serif;
}

 footer {
    min-height: 10vh;
    margin-top: 15vh;
    background-image: linear-gradient(#333, black);
    color: rgba(250, 250, 250, 0.7)
}


