/* Desktop theme base from: https://itinerae.neocities.org/meleys */

body {
    background: url(/images/spac006.gif);
    font-family: monospace, calibri, Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-shadow: 0px 0px 0px #b3b3b3;
    color: #888;
    letter-spacing: 1px;    
}
  
#wrapper {
    margin: 0 auto;
    width: 850px;
}

#headerwrap {
    width: 100%;
    float: left;
    margin: 0 auto;
}

#header {
    height: fit-content;
    background: #FFF;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: 1px solid #acdafc;
    margin: 0px;
}

.headertext {
    font-size: 50px;
    font-style: italic;
    color: #377fb4;
}

#navigationwrap {
    width: 850px;
    float: left;
    margin: 0 auto;
}

#navigation {
    height: fit-content;
    line-height: 20px;
    background: #FFF;
    border-radius: 0px;
    border: 1px solid #acdafc;
    margin: 0px;
    padding: 5px;
}
      
#navigation a:link, a:visited, a:active {
    font: 12px monospace;
    text-transform: uppercase;
    line-height: 20px;
    padding: 4px; 
    letter-spacing: 2px;
    margin-right: 10px;
    color: #888;
  }

#navigation a:hover {
    background: #fff;
    text-transform: uppercase;
    line-height: 20px;
    padding: 4px; 
    letter-spacing: 4px;
    margin-right: 10px;
    color: #666;
  }

#contentwrap {
    width: 650px;
    float: left;
    height: 10em;
}

#content {
    background: #FFFFFF;
    border-radius: 0px;
    border: 1px solid #ebebeb;
    margin: 0px;
    padding: 5px;
    overflow: scroll;
    height: 45em;
}

#leftcolumnwrap {
    width: 200px;
    float: left;
    margin: 0 auto;
}

#leftcolumn {
    background: #FFF;
    border-radius: 0px;
    border: 1px solid #ebebeb;
    margin: 0px;
    padding: 5px;
    height: 45em;
    overflow: scroll;
}

#footerwrap {
    width: 850px;
    float: left;
    margin: 0 auto;
    clear: both;
}

#footer {
    background: #FFF;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    line-height: 20px;
    border: 1px solid #ebebeb;
    margin: 0px;
    padding: 5px;
    text-align: center;
}    

::-webkit-scrollbar-thumb {
    background-color: #377fb4;  
    border-radius: 0px;
    border: 1px solid #999;
}
::-webkit-scrollbar {
    width: 7px; 
    height: 4px; 
    background: #fff;
}

.title {
    background: #377fb4;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    padding: 2px;
    padding-left: 4px;
    margin-bottom: 4px;
}

.title2 {
    background: #acdafc;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #555;
    padding: 2px;
    padding-left: 4px;
    margin-bottom: 4px;
}
    
b {
    color: #B39781;
}
    	
a:link, a:visited, a:active { 
    color: #377fb4;
    text-decoration: none;
}

a:hover {
    color: #00023c;
}

/*Readmore code tweaked from here: https://nomnomnami.com/templates/periwinkle/ */
details > summary {
    cursor:pointer;
    text-align: center;
}

.readmore summary {
    font-weight: bold;
    list-style: none;
}
.readmore summary::-webkit-details-marker {
    display: none;
}
.readmore[open] > summary {
    border-bottom: 5px dotted #888;
    padding-bottom: .6em;
    margin-bottom: .6em;
}

/* Custom stuff */

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.headerImage {
    height: 100px;
    padding: 10px
}

.title:before, .title2:before { 
    content: '\2606';
}

.mainBack {
    background: #FFFFFF;
    height: 100%;
}

/* Mobile site */

@media(max-width:870px) {
    
    #wrapper {
        width: 100%;
    }
    
    #headerwrap {
        width: 100%;
        height: 125px;
    }
    
    .headertext {
        font-size: 2em;
    }
    
    .headerImage {
        height: 4em;
        padding: 5px
    }
    
    #navigationwrap {
        width: 100%;
    }
    
    #contentwrap {
        width: 100%;
        height: fit-content;
    }
    
    #content {
        overflow: visible;
        height: fit-content;
    }
    
    #leftcolumnwrap {
        width: 100%;
        float: none;
    }

    #leftcolumn {
        height: fit-content;
        overflow: scroll;
    }

    #footerwrap {
        width: 100%;
    }
}