body {
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    background-color: #ffffbb;
    margin: 0;
    padding: 0;

}

.navwrapper {
    display: flex;
    justify-content: center;
}

.navbar {
    overflow: hidden;
    background-color: #b00;
    position: fixed;
    top: 5px;
    width: 98vw;
    border-radius: 10px;
    z-index: 10;
}

.navbar a,#banner-title {
    float: left;
    display: block;
    color: #eeeeee;
    text-align: center;
    padding: 11px 14px;
    text-decoration: none;
    font-family: 'Libre Baskerville', 'Times New Roman', Times, serif;
    font-size: 14px;
}

.navbar a {
    padding: 18px 16px;
}

#banner-title {
    color: #222;
    font-weight: bold;
    font-style: italic;
    font-size: 1.4em;
}

.navbar a:hover {
    background-color: #b77;
}

#content {
    margin-top: 70px;
}

#content>div {
    margin: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 10px;
    overflow: hidden;
}

#content>div:nth-of-type(odd) {
    background: #bbffff;
}

#content>div:nth-of-type(even) {
    background: #ffbbff;
}

.quote {
    font-style: italic;
    color: rgb(0, 95, 1);
}


#footer {
    margin-top: 150px;
    background-color: #ffffbb;
    padding: 20px
}

.footnote {
    font-weight: bold;
    font-size: 0.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Libre Baskerville', 'Times New Roman', Times, serif;
}

.black-suit,
.red-suit {
    font-size: 1.5em;
}

.black-suit {
    color: #000;
}

.red-suit {
    color: #b00;
}


/* general image stuff */
/* container for image + captions */
.img-wrapper {
    border: 3px solid #333;
    border-radius: 5px;
    padding: 5px;
    width: 250px;
    float: left;
    margin-right: 20px;
    margin-left: 20px;
    background-color: #eee;
}

.img-wrapper img:hover {
    box-shadow: 3px 3px 10px 3px #a00;
}

.img-wrapper img {
    width: 250px;
}