body {
    font-family: Calibri, 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background-color: antiquewhite;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

header {
    display: flex;
    flex-direction: column;
}

main {
    margin: 20px;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    background-color: rgb(71, 71, 71);
    border-radius: 10px 10px 0px 0px;
}

h2 {
    margin: 5px;
}
figure {
    margin: 0;
}

ol li {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px
}

img {
    width: 100%;
}

.container-horizontal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.container-vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header h1 {
    text-align: center;
    margin-top: 3%;
    margin-bottom: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 30px;
    padding-right: 30px;
    align-self: center;
    background-color: rgb(155, 215, 255);
    border-radius: 10px;
    font-size: 50px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.top-bar {
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 10px;
    width: 100%;
    background-color: rgb(71, 71, 71);
}

header p:first-of-type {
    font-size: 15px;
    color: aliceblue;
    margin: 10px;
    text-align: center;
}

header p:last-child {
    font-size: 25px;
    color: aliceblue;
    margin: 10px;
}

header a {
    text-decoration: none;
    color: rgb(161, 211, 255);
}

header a:visited {
    color: rgb(218, 107, 218);
}

header a:active {
    color: rgb(0, 0, 0);
}

section h2 {
    font-size: 30px;
}

section p,
section li {
    font-size: 20px;
}

.intro .container-horizontal section {
    margin: 10px;
    padding: 10px;
    width: 290px;
    height: 325px;
    min-width: 150px;
    background-color: rgb(155, 215, 255);
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.intro .container-horizontal img {
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.intro .container-horizontal figcaption {
    background-color: rgb(155, 215, 255);
    color: #5a5a5a;
    width: fit-content;
    justify-self: center;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.intro .container-horizontal ul {
    padding-left: 10px;
    list-style-type: '- ';
}

.middle .container-horizontal {
    flex-wrap: wrap;
}

.middle .directions {
    margin: 10px;
    padding: 10px;
    width: 760px;
    min-width: 150px;
    background-color: rgb(155, 215, 255);
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}


.middle .notes {
    margin: 10px;
    padding: 10px;
    width: 290px;
    min-width: 150px;
    background-color: rgb(155, 215, 255);
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

.directions ol li:nth-child(odd) {
    background-color: #e8feff;
    border-radius: 5px;
}

.directions ol li:nth-child(even) {
    background-color: #9cfaff;
    border-radius: 5px;
}

.directions ol li:first-child {
    background-color: rgb(161, 255, 161);
}

.directions ol li:last-child {
    background-color: rgb(253, 142, 142);
}

footer section {
    width: 70%;
    max-width: 720px;
    margin: 20px;
    padding: 20px;
    background-color: rgb(172, 172, 172);
    border-radius: 10px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
}

footer section h3 {
    background-color: white;
    margin-top: 5px;
    padding: 10px;
    border-radius: 10px;
    font-size: 25px
}

footer section article {
    width: 100%;
    max-width: 720px;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
}

footer table {
    width: 100%;
    max-width: 720px;
    border-spacing: 0;
    border: solid 5px black;
}

footer th, td {
    padding: 5px;
    border: solid 1px black;
}

footer td {
    text-align: right;
}