html, body, main, footer, nav, section, div, h1, h2, p, ul, address {
    margin: 0em;
    border: none;
    padding: 0em;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: stretch;
    height: 100vh;
    background: url("background.jpg") repeat;
    color: rgba(32, 32, 0, 1.0);
    font-size: 16pt;
    text-align: start;
}

main, footer {
    position: relative;
    width: 100vw;
    overflow: hidden;
}
main {
    flex: 1 1 auto;    
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    overflow-x: scroll;
}
footer {
    flex: 0 0 auto;
    display: block;
    padding: 1em;
    max-height: 20vh;
    background: rgba(143, 95, 63, 0.33);
    font-size: 12pt;
    text-align: center;
    overflow-y: scroll;
}

section {
    flex: 0 0 100vw;
    padding: 1em;
    overflow-x: hidden;
    overflow-y: scroll;
}

div.box {
    margin: 0em auto;
    border-radius: 6px;
    box-shadow: 0.5px 0.5px 4px #220;
    padding: 0.75em 1em;
    max-width: 900px;
    overflow-x: hidden;
}

h1 {
    font-size: 20pt;
    color: rgba(0, 0, 128, 1.0);
}
h2 {
    font-size: 18pt;
}

p, address {
    margin: 0.25em 0em;
    font-weight: normal;
    font-style: normal;
}
p {
    text-align: justify;
}

ul {
    margin: 0.5em 0em 0.5em 0.5em;
    list-style: disc inside;
}
ul ul {
    margin: 0.25em 0em 0.5em 1em;
    list-style: circle inside;
}

a, a:visited {
    color: rgba(0, 0, 128, 1.0);
    text-decoration: underline;
}
h1 a, h1 a:visited {
    text-decoration: none;
}
a:not(.nonatomic), .atomic {
    white-space: nowrap;
}
