@font-face {
    font-family: 'Eagle Lake';
    font-weight: 400;
    src: url('../assets/fonts/EagleLake-Regular.woff2') format('woff2'),
         url('../assets/fonts/EagleLake-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Baskerville';
    font-weight: 400;
    src: url('../assets/fonts/LibreBaskerville-VariableFont_wght.woff2') format('woff2'),
         url('../assets/fonts/LibreBaskerville-VariableFont_wght.woff') format('woff');
}

@font-face {
    font-family: 'Baskerville';
    font-style: italic;
    font-weight: 400;
    src: url('../assets/fonts/LibreBaskerville-Italic-VariableFont_wght.woff2') format('woff2'),
         url('../assets/fonts/LibreBaskerville-Italic-VariableFont_wght.woff') format('woff');
}

body {
    background-color: #ceb4b1;
}

h1, h2, h3 {
    font-family: 'Eagle Lake';
}

p {
    font-family: 'Baskerville';
}

.constructionWarning {
    display: flex;
    justify-content: center;
    color: rgb(255, 0, 0);
}

/* Header */
.logo-header {
    display: flex;
    justify-content: center;
}

.logo-nav {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    margin-top: 2rem;
    padding: 1rem;
    /* border: yellow .5rem solid; */
}

.logo-picture {
    width: 100%;
    /* border: blue .5rem solid; */
}

.header-links {
    display: flex;
    justify-content: space-around;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
    margin-top: 10px;
    /* border: violet .5rem solid; */
}

.header-links a {
    color: rgb(131, 15, 15);
    font-weight: bold;
}

.header-links a:link {
    text-decoration: none;
}

.header-links a:hover {
    color: rgb(202, 67, 97);
}

.mobile-menu-button {
    display: none;
}

/* Mobile Header */
@media (max-width: 35em) {
    .mobile-menu-button {
        display: block;
        z-index: 9999;
        padding: 1.5rem;
        font-family: "Baskerville";
        font-size: 1.5rem;
        color: white;
        background-color: rgb(131, 15, 15);
        border: none;
        margin-top: 1rem;
    }
    
    .header-links {
        z-index: 1000;
        flex-direction: column;
        background-color: lightgreen;
        margin-top: 0;
        align-items: center;
        justify-content: baseline;
        padding: .5rem;
        display: none;
        /* border: blue .5rem solid; */
    }

    .header-links a {
        display: inline-block;
        font-size: 1.5em;
        padding: 2rem;
        width: 90%;
        text-align: center;
        /* border: white .25rem solid; */
    }

    .header-links[data-visible="true"] {
        display: flex;
    }

}


/* Main */
.main {
    display: flex;
    flex-direction: column;
    margin: 5%;
}

.chapter {
    display: flex;
    flex-direction: column;
    margin-right: 5%;
    margin-left: 5%;
    text-indent: 2.5rem;
}

/* Character Gallery */
.character-gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2em;
    /* border: 2px solid red; */
}

.character-gallery-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 2px solid blue; */
}

.character-gallery-portrait-box {
    position: relative;
    /* border: 2px solid teal; */
}

.character-gallery-portrait {
    height: 100%;
    width: 100%;
    /* border: 2px solid green; */
}

.character-gallery-bio {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.6s;
    box-sizing: border-box;
    padding: 2.5rem;
    /* border: 2px solid yellow; */
}

.character-gallery-bio:hover {
    opacity: 1;
}

.character-gallery-bio p {
    color: white;
    background: transparent
}

.character-gallery-bio h3 {
    color: white;
    font-weight: lighter;
    background: transparent
}

/* Cover Art on Et Cetera page */
.lsCovers {
    display: flex;
    flex-wrap: wrap;
}

.lsCovers img {
    height: 700px;
    margin: 20px;
}