body {
    font-family: "EB Garamond", serif;
    font-size: 18px;
    background-color: #153129;
    min-height: 100vh;
    color: #f0f0f0;
    margin: 0;
    position: absolute;
    width: 100%;
}

nav {
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
    background-color: #d0b671;
    height: 150px;
    width: 100%;
}

nav img {
    height: 125px;
}

nav a {
    color: #153129;
    font-size: 30px;
    font-weight: bold;
    padding: 5px 50px;
    text-decoration: none;
    transition-duration: 200ms;
    border-radius: 10px;
}

@media (max-width: 1000px) {

    nav {
        height: 100px;
        justify-content: space-evenly;
    }

    nav a {
        font-size: 20px;
        padding: 0;
    }

    nav img {
        height: 70px;
    }

    div.contact-icons img {
        height: 50px;
        margin-left: 12px;
        margin-right: 12px;
    }

}

@media (min-width: 1000px) {
    nav a.nav-link:hover {
        background-color: #153129;
        color: #d0b671;
    }
}

.page {
    margin-top: 50px;
    padding: 20px 10px;
    background-color: white;
    color: black;
}

.page h3 {
    font-size: 23px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.page h3.header-short {
    width: 70%;
}

.image-with-blurb {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.blurb {
    vertical-align: top;
    padding-left: 40px;
    padding-right: 40px;
    width: 650px;
}

.via-luino {
    flex-grow: 1;
    text-align: center;
    font-size: 30px;
}

.blurb-img {
    height: 400px;
    width: 300px;
    object-fit: contain;
    margin-right: 20px;
}

.author-photo {
    height: 300px;
    width: 300px;
    object-fit: contain;
    margin-right: 20px;
    margin-bottom: 20px;
}

p.footnote {
    font-style: italic;
    font-size: 15px;
    text-align: right;
}

.link-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.link-group a {
    color: black;
    font-weight: bold;
    margin-left: 12px;
    margin-right: 12px;
}

.fancy-name {
    width: 328px;
    display: block;
    margin: auto;
    scale: 1;
}

.quote {
    max-width: 500px;
    font-style: italic;
    margin-left: auto;
}

.divider {
    height: 100px;
    display: block;
    margin: auto;
    max-width: 100%;
}

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

.contact-icons {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}

.contact-icons img {
    height: 100px;
    margin-left: 25px;
    margin-right: 25px;
}

.contact-icons-sm {
    display: flex;
    justify-content: center;
}

.contact-icons-sm img {
    height: 50px;
    margin-left: 10px;
    margin-right: 10px;
}

a {
    color: black;
}

a:active {
    color: black;
}