* {
    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: 4px;
}

h3 {
    transform: translateY(12.5vh);
    color: #111;
    text-align: center;
    font-family: 'Lora', serif;
    font-size: 2em;
    padding: 4px; padding-bottom: 24px;
    width: 52vw; margin: 0 auto;
}

h3 span {
    font-size: 0.6em;
    padding-left: 40px; padding-right: 40px;
}

h3 a {
    color: #111;
    text-decoration: none;
}

h3 a:hover {
    color: #555;
    text-decoration: underline;
}

.calendar {
    min-height: 80vh;
    display: grid;
    transform: translateY(12.5vh);
    margin: 0 24px;
    border: 5px solid yellow;
    grid-template: 0.3fr 1fr 1fr 1fr 1fr 1fr / repeat(7, 1fr);
}

.grid_item {
    outline: 1px solid #555;
    background-color: #eee;
    min-height: 160px;
    padding: 10px;
    font-size: 1.4em;
    font-weight: bold;
}

.grid_item span {
    background-color: rgba(250, 250, 250, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid yellow;
}

.grid_item p, .grid_item a, .grid_item a:link, .grid_item a:visited {
    display: block;
    text-align: right;
    transform: translateY(150%);
    background-color: rgba(250, 250, 250, 0.8);
    padding: 4px 2px;
    text-decoration: none;
    color: #111;
    font-size: 0.9em;
}

.grid_item a:hover {
    color: darkorange;
    background-color: #555;
    outline: 1px solid yellow;
}

.senior {
    background-image: url(/images/wk09-breakfast.jpg);
    background-position: cover; background-repeat: no-repeat; background-size: 100%;
}

.book {
    background-image: url(/images/wk09-books.jpg);
    background-position: cover; background-repeat: no-repeat; background-size: 100%;
}

.yoga {
    background-image: url(/images/wk09-yoga2.jpg);
    background-position: cover; background-repeat: no-repeat; background-size: 100%;
}

.cookoff {
    background-image: url(/images/wk09-cooking.jpg);
    background-position: cover; background-repeat: no-repeat; background-size: 100%;
}

.day {
    outline: 2px solid #eee;
    background-color: darkorange;
    color: #eee;
    padding: 10px;
    font-size: 1.6em;
    font-weight: bold;
    text-align: center;
    font-family: 'Lora', serif;
}

 footer {
    min-height: 10vh;
    margin-top: 15vh;
    background-image: linear-gradient(#333, black);
    color: rgba(250, 250, 250, 0.7)
}


