@charset "UTF-8";
/* CSS Document */
/* -------------------------------- BASICS */
body {
    width: 100%;
    max-width: 2560px;
}
#PageContainer, #PageFooter {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
    #PageContainer {
        padding-top: 75px;
        vertical-align: middle;
    }
/* -------------------------------- BASICS */
section {
    text-align: center;
    width: 100%;
}
    .container {
        width: 100%;
        max-width: 740px;
        margin: 0 auto;
        text-align: left;
    }
#navbar {
    background-color: #333; /* Black background color */
    position: fixed; /* Make it stick/fixed */
    z-index: 10;
    top: 0; /* Stay on top */
    width: 100%; /* Full width */
    transition: top 0.3s; /* Transition effect when sliding down (and up) */
    background-image: url("/assets/nav-loop.jpg");
    background-size: cover;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,.25);
    background-position: center center;
    min-height: 75px;
}
    .nav-loop {
        position: absolute;
        z-index: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #nav {
        position: absolute;
        z-index: 10;
        display: flex;
        justify-content: space-evenly;
        max-width: none;
        background-color: rgba(0, 0, 0, 0.5);
        height: 100%;
        width: 100%;
    }
        .nav-container {
            width: 100%;
            max-width: 740px;
            display: flex;
            justify-content: space-between;
            padding: 0 1em;
        }
        #navbar a {
            float: left;
            display: block;
            color: white;
            text-align: center;
            padding: 30px 0;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 700;
        }
        #navbar a:hover {
            color: #fcbc7c;
        }
        #navbar .drop-container {
            position: relative;
        }
            #navbar .drop-container .drop {
                position: absolute;
                top: 100%;
                left: 0%;
                background-color: #f7f1e5;
                border-left: 1px solid #000000;
                border-right: 1px solid #000000;
                white-space: nowrap;
                box-shadow: 0px 3px 3px rgba(0,0,0,0.5);
            }
                #navbar .drop-container .drop a {
                    padding: 5px 10px;
                    font-weight: normal;
                    text-transform: none;
                    color: #847b74;
                    border-bottom: 1px solid #000000;
                    width: 100%;
                    box-sizing: border-box;
                    text-align: left;
                }
                #navbar .drop-container .drop a:hover {
                    background-color: #fcbc7c;
                }
#introSection {
    background-color: #f7f1e5;
}
iframe.chapterVid {
    width: 100vw;
    min-height: calc(100vh - 60px - 80px);
}
/* -------------------------------- MISCELLANY */
.full-width {
    width: 100%;
}
.limited-width {
    width: 100%;
    max-width: 1000px;
}
.comic {
    font-family: "comic neue"
}