body {
	background-color: #ffffff;
    margin:0px;
}

#title {
    font-size: 3em;
    font-family:Arial, sans-serif;
    font-weight: bold;
    font-style: italic;
    text-transform: uppercase;
    padding-left: 2vw;
}

#main {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 1em;
    padding: 2vw;
    max-width: 800px;
    line-height: 1.3;
    text-align: left;
}

#float-toc {
    font-family: 'Courier New', Courier, monospace;
    width: 28vw;
    height: 100%;
    font-size: 1em;
    padding: 0.5em;
    margin-left: 2vw;
    margin-right: 2vw;
    float: right;
}

blockquote {
    font-size: 0.9em;
    font-style: italic;
}

ul.toc-h1 {
    padding-left: 1em;
    padding-right: 0.5em;
    font-size: 1em;
    font-weight: bold;
    list-style: square;
}

ul.toc-h2 {
    padding-left: 1em;
    font-size: 0.9em;
    font-weight: 100;
    list-style: square;
}

#nav {
    padding-left: 2vw;
    background-color: rgb(32, 32, 32);
    font-size: 1.2em;
    font-family:Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

a.nav, a.bread {
    color:#ff97ff;
    text-decoration: none;
}

a.nav:hover, a.bread:hover {
    color:#ff97ff;
    text-decoration: none;
    font-style: italic;
}

#bread {
    padding-left: 2vw;
    padding-top: 0.5vw;
    background-color:white;
    font-size: 0.8em;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-transform: lowercase;
    color:#ff97ff;
    margin-bottom: 20px;
}

#date {
    font-size: 1em;
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
    padding-left: 2vw; 
}

img {
    max-width: 100%;
    /* max-width: 800px; */
    /* border:2px dotted #acff97; */
    
}

@media screen and (max-width:450px) {
	#float-toc {
        font-size: 1em;
        width: 90vw;
        float: none;
        line-height: 1.6;
        padding: 1%;
        margin: 2vw;
    }

    #main {
        width: 90vw;
        margin: 2vw;
	}

    ul.toc-h2 {
        display: none;
    }

    #title {
        font-size: 2em;
    }
}

h1 {
    font-family: 'Courier New', Courier, monospace;


}

a.toc-h1 {
    text-decoration: none;
    color: black;
}

h2 {
    font-family: 'Courier New', Courier, monospace;


}

a.toc-h2 {
    text-decoration: none;
    color: black;
}

h3 {
    font-family: 'Courier New', Courier, monospace;


}

h4 {
    font-family: 'Courier New', Courier, monospace;


}

h5 {
    font-family: 'Courier New', Courier, monospace;
}

h6 {
    font-family: 'Courier New', Courier, monospace;
}

a {
    text-decoration: underline;
    color:#8a8a8a;
}

a:hover {
    text-decoration: underline;
    color:#ff97ff;
}

li.big {
	line-height: 115%;
	font-family: "Courier New", Courier, monospace;
	font-size: 1.5em;
    list-style-type: square;
}

.ascii {
    font-size: 3px;
    white-space: pre-wrap;
    font-family:'Courier New', Courier, monospace;
    display: block;
    min-width: 250px;
    font-weight: bold;
}

code {
    color: black;
    font-family:'Courier New', Courier, monospace;
    font-size: 0.9rem;
    background-color: #e0e0e0;
    padding: 2px;
}

pre code {
    background-color: inherit;
    color: inherit;
    font-size: inherit;
}

/* START Zola's recommended code block css */
pre {
    padding: 1rem;
    overflow: auto;
}
/* The line numbers already provide some kind of left/right padding */
    pre[data-linenos] {
    padding: 1rem 0;
}
pre table td {
   padding: 0;
}
/* The line number cells */
    pre table td:nth-of-type(1) {
    text-align: center;
    user-select: none;
}
pre mark {
/* If you want your highlights to take the full width. */
    display: block;
/* The default background colour of a mark is bright yellow */
    background-color: rgba(254, 252, 232, 0.9);
}
pre table {
    width: 100%;
    border-collapse: collapse;
}
/* END Zola's recommended code block css */

@media (prefers-color-scheme: dark) {
    body {
        background-color: rgb(32, 32, 32);
        color: white;
    }

    a {
        color: #8a8a8a;
    }
    
    #bread {
        background-color: rgb(32, 32, 32);
    }

    code {
        color: rgb(255, 129, 129);;
        font-family:'Courier New', Courier, monospace;
        font-size: 0.8rem;
        background-color: #4b4b4b;
        padding: 2px;
    }
    a.toc-h1 {
        text-decoration: none;
        color: white;
    }
    
    a.toc-h2 {
        text-decoration: none;
        color: white;
    }
    
}