/* Better Flexbox */
body {
    background-color: #252525;
    margin: 0;
    overflow-y: scroll; /*Forces a scroll-bar to prevent content shifting*/
}

.header-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px; 
    max-height: 100px;
    max-width: 100%;
    background-color: #161616;
}

.header-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 17rem;
    min-width: 13rem;
}

.nav-container {
    display: flex;
    background-color: #79241ffd;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.589);
    justify-content: center;
    align-content: center;
    max-width: 100%;
    padding: 8px;
}

.nav-links-container {
    display: flex;
    flex-direction: row;
    width: 55rem; 
    justify-content: space-between;
    font-family: 'Cinzel';
    font-weight: 500;

}

.left {
    flex: 60%;
    text-align: center;
}

.right {
    flex: 40%;
}

.hero {
    max-width: 80%;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.589);
}


.footer-wrapper {
    display: flex;
    justify-content: center;
    background-color: #161616;
    width: 100%;
}

.footer-container {
    display: flex;
    background-color: #161616;
    padding: 20px;
    text-align: center;
    width: 55rem;
    font-family: 'Source Sans 3';
    font-weight: 300;
}

.footer-left {
    flex: 1;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.footer-right {
    flex: 1;
}


/* Need to further specify so that all site links do not
inherit the rules below. */
a {
    text-decoration: none;
    color: white; 
}

a:hover {
    color: #252525;
}

h1 {
    font-family: 'Cinzel', serif; /* headings */
    font-weight: 600;
    font-size: 3rem;
    color: white;
}

h2 {
    font-family: 'Cinzel', serif; /* headings */
    font-weight: 500;
    font-size: 2rem;
    color: white;
}    


h3 {
    font-family: 'Cinzel', serif; /* headings */
    font-weight: 500;
    font-size: 1.25rem;
    color: white;
}

p {
    font-family: 'Source Sans 3'; /* body */
    font-size: 1.25rem;
    font-weight: 300;
    color: white;
}

li {
    list-style: none;
}

.homelinks {
    font-size: 1rem;
    font-family: 'Source Sans 3'; /* body */
    display: inline;
    color: white;
}


span {
    color: white;
    font-family: 'Source Sans 3';
    font-weight: 300;
    font-size: 1.10rem;
}

.booksref {
    color: #d92017fd;
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
}
