body {
    background-color: #F9F9ED;
    color: #535B8D;
    text-align: center;
    font-family: 'Fira Code';
}

@media (max-width: 599px) {
    body {
        display: flex;
        flex-direction: column;
        background-color: #C4D6B0;
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    body {
        margin: 0 auto;
        background-color: #FCDE9C;
    }
}

a {
    color: #DA4167;
    text-decoration: none;
}

a:hover {
    color: #83B616;
    text-decoration: underline;
}

main {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    align-items: center;
}

h1, h2 {
    font-family: Georgia;
}

h3 {
    text-align: left;
}

p {
    margin-left: 3%;
    margin-right: 3%;
    font-family: sans-serif;
}

figure {
    font-style: italic;
    text-align: center;
}

li {
    padding: 5px 0 5px 0;
    text-align: left;
}

.introImage {
    width: 51%;
}

figure {
    text-align: center;
}

figcaption {
    font-style: italic;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 40px;
}

th, td {
    border: 1px solid #999;
    padding: 8px;
    text-align: left;
}

thead tr {
    background-color: #333;
    color: white;
}

tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

tbody tr:nth-child(even) {
    background-color: #e9e9e9;
}

tfoot {
    background-color: #ddd;
    font-weight: bold;
}

#footer {
    margin: 0 auto;
    text-align: center;
    align-items: center;
}

.left-align {
    text-align: left;
}