/* Colors
Yellow - Harvest Gold - #DA9100
Red - Black Bean - #4B0607
Purple - Russian Violet - #311B4B
Blue - Midnight Blue - #191970
Green - Dark Green - #013220
*/

body {
    background: #9C9D98 url('grayscalebgnew.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 75%;
}

/* Text */
#content {
    width: 90%;
    margin: 5% auto 5% auto;
    z-index:0;
}
#main {
    width: 80%;
    font-size: 1rem;
    font-family: "PT Mono", monospace;
    padding: 10px;
    background: rgba(228,228,228,0.7);
    z-index:1;
}
#main p {
    text-indent: 25px;
    z-index:1;
}

#sidebar {
    width: 15%;
    float: right;
    font-size: 1em;
    font-family: "PT Mono", monospace;
    background: rgba(228,228,228,0.7);
    text-align: center;
    padding: 5px;
    z-index:1;
}
/* Remove Sidebar and Center the main box for Mobile */
@media (max-width:600px) {
    #sidebar {
        display: none;
    }
    #main {
        margin: 0 auto;
    }
}

/* Navigation */
#navbar {
    width: 100%;
    position:fixed;
    top:0;
    left:0;
    margin: 0;
    background: #9C9D98;
    text-align:center;
    list-style: none;
    padding: 5px;
    opacity:1;
    z-index:4;
}
#navbar li {
    border: 1px solid #797876;
    font-size: 1.5rem;
}
#navbar li a {
    color: #191970;
    text-decoration: none;
}
#navbar li a:hover {
    color: #480607;
}
/* Desktop */
@media (min-width: 601px) {
    #navicon {
        display: none;
    }
    #navbar li {
        display:inline;
    }
}
/* Mobile */
@media screen and (max-width:600px) {
    .nav li:not(:first-child) {
        display: none;
    }
    #navicon {
        display: block !important;
        text-align:center;
        position:relative;
        top:0;
        left:0;
        width:100%;
    }
    .nav.responsive li {
        display: block;
        width:100%;
    }
}

/* Coloring the selected pages */
.pagetrue {
    font-weight: bold;
    color: #311B4B;
    border: 2px dotted #DA9100;
}

/* Headers */
h1 {
    font-family: "Macondo", display;
    font-size: 4em;
    text-align: center;
    width: 100%;
}
h2 {
    font-family: "Playfair Display", serif;
    font-size: 2em;
    text-align: center;
    width: 100%;
}
h3 {
    font-family: "Macondo", display;
    font-size: 1.5em;
    text-align: center;
    width: 100%;
}

h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.2em;
    text-align: center;
    width: 100%;
    font-weight: normal;
    font-style: italic;
}

/* links */
a {
	color: #191970;
	text-decoration: wavy underline;
}

a:hover, a:focus, a:active {
	color: #480607;
}

/* fancy rules */

ul.ruleslist, ol.ruleslist {
    list-style-type: none;
}
.ruleslist li {
    margin-bottom:1em;
    padding-left: 5px;
    margin-left:20px;
}

/* character list */

.charlist {
    list-style: none outside;
    text-align:center;
    margin: 0 auto;
    padding: 0;
}



