/*
contains CSS for the header
contains CSS generated by org-mode partially
if something looks out of place
contrast with vanilla org style sheets


 HEADER: */

.header-container {
    max-width:100%;
#    background-color: moccasin;
#    color: firebrick;
    display: flex;
    justify-content: space-around;
}

.header-text {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
}

pre.logo {
    line-height: 1.1;
    background-color: black;
    color: #FFCC00;
    width: max-content;
    margin-bottom: 1.2 em;
    font-size: small;
}


.header-title {
    font-size: 4em;
    text-align: left;
}

.header-subtitle {
    font-style:italic;
    font-family:monospace;
    text-align:right;
    margin-top:1em;
    font-size: 1em;
}

.header-blurb {
    font-family: sans serif;
    margin-top: 1em;
    font-style: italic;
}


/* REST OF BODY */

body {
    margin: auto auto auto auto;
    background-color:black;
    color: #FFCC00;
    width: 80%;
}

#content {
#    max-width: 90%;
    margin: 30px;
}

.title {
    font-size: 2.4em;
    text-align: center;
    margin-bottom: 0.2em;
}

.subtitle {
    text-align: center;
    font-size: medium;
    font-weight: normal;
    font-family: sans serif;
    margin-top: 0.2em;
}

a:link {
    color: orange;
}

a:visited {
    color: moccasin;
}

blockquote p {
    font-family: monospace;
    font-size: 16px;
}

p.verse {
    margin-left: 3%;
}


.todo {
    font-family: monospace;
    color:red;
}

.done {
    font-family: monospace;
    color: green;
}

.priority {
    font-family: monospace;
    color: orange;
}

.tag {
    background-color: #EEE;
    font-family: monospace;
    padding: 2px;
    font-size: 80%;
    font-weight: normal;
}

.org-right {
    margin-left: auto;
    margin-right: 0px;
    text-align: right;
}

.org-left {
    margin-left: 0px;
    margin-right: auto;
    text-align: left;
}

.org-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#preamble p {
    font-size: 90%;
    margin: 0.2em;
}

#postamble p {
    font-size: 90%;
    margin:0.2em;
    text-align: center;
}

pre {
#    border: 1px solid #CCC;
#    box-shadow: 3px 3px 3px #EEE;
    padding: 8pt;
    overflow: auto;
    margin: 1.2 em;
    color: white;
    background-color: green;
    font-size:15px;
}

pre.src {
    position: relative;
    overflow: auto;
    padding-top: 1.2em;
}

table {
    border-collapes: collapse;
}

caption.t-above {
    caption-side: top;
}

caption.t-bottom {
    caption-side: bottom;
}

td, th {
    vertical-align: top;
}

th.org-right {
    text-align: center;
}

th.org-left {
    text-align: center;
}

th.org-center {
    text-align: center;
}

td.org-right {
    text-align: right;
}

td.org-left {
    text-align: left;
}

td.org-center {
    text-align: center;
}

dt {
    font-weight: bold;
}


.footpara {
    display: inline;
}

.footdef {
    margin-bottom: 1em;
}

.figure {
    padding: 1em;
}

.figure p {
    text-align: center;
}



