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

nav {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #d0b671;
    height: 150px;
    width: 100%;
}

.desktop-only nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav img {
    height: 125px;
}

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

.nav-link-mobile {
    color: #d0b671;
    display: block;
    font-size: 30px;
    font-weight: bold;
    padding: 5px 30px;
    text-decoration: none;
    transition-duration: 200ms;
    border-radius: 10px;
}

.dropdown-content .nav-link {
    font-size: 24px;
    padding: 12px 24px;
}

.dropdown {
    padding-bottom: 10px;
    padding-top: 10px;
}

.dropdown-content li {
    padding-top: 3px;
    padding-bottom: 3px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #d0b671;
    list-style: none;
    padding-left: 0;
    margin-left: 30px;
    margin-top: 8px;
    border-radius: 10px;
    border: 3px solid #153129;
    z-index: 1000;
}

.dropdown-content.open {
    display: block;
}

@media (max-width: 1000px) {

    .desktop-only {
        display: none;
    }

    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;
    }

    .dropdown-content {
        padding: 10px;
    }

}

@media (min-width: 1000px) {

    .mobile-only {
        display: none;
    }

    .nav-link:hover {
        color: black;
        text-decoration: underline;
    }

    .dropdown-content li:hover {
        background: #153129;
    }

    .dropdown-content li:hover a {
        color: #d0b671;
    }

}

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

.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;
}

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

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

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

.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;
}

.button-group {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.button-group-title {
    font-style: italic;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
}

.button-group a {
    color: white;
    padding: 10px;
    border-radius: 5px;
    background-color: #153129;
    font-size: 24px;
    margin: 5px 16px;
    text-decoration: none;
    min-width: 150px;
    text-align: center;
}

.button-group a:hover {
    background-color: #0e211b;
}

.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;
}

.footer {
    text-align: center;
}

.thirds {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
}

.third {
    display: inline-block;
    width: 300px;
}

.hamburger {
    color: #153129;
    scale: 74%;
    top: 20px;
    left: 30px;
    position: absolute;
}

.mobile-logo {
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 13px;
}

.nav-sidebar {
    padding-top: 20px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: #153129;
    z-index: 4000;
    max-width: 70%;
    min-width: 100px;
    transform: translateX(-100%);
    transition: transform 0.1s ease-out;
    border-right: 4px solid black;
}

.nav-sidebar.open {
    transform: translateX(0);
}

.nav-link-mobile-group {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 15px;
}

.nav-link-mobile-group li {
    color: #d0b671;
}

.nav-link-mobile-group li .nav-link-mobile {
    padding-left: 5px;
}

.spacer {
    color: #d0b671;
    font-size: 24px;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 16px;
}