.serif {
    font-family: 'Lora', serif;
}

.sans-serif {
    font-family: 'Roboto', sans-serif;
}

.monospace {
    font-family: monospace;
}

/* some resetting stuff */

* {
  margin: 0;
  padding: 0;
}

input,
button,
select,
textarea {
  font: inherit;
}

img,
svg,
video,
canvas,
picture {
  display: block;
  max-width: 100%;
}

/* flex sticky footers developed from https://developer.mozilla.org/en-US/docs/Web/CSS/Layout_cookbook/Sticky_footers */
html {
    height: 100%;
    box-sizing: border-box;
}
* {
    box-sizing: inherit;
}
body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}        
header {
    flex-shrink: 0;
}
main {
    flex-grow: 1;
}
footer {
    flex-shrink: 0;
}
/* - - - - - - - - */

html {
    background: #f0f0f0;
}

body {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    color: #000000;
    font-family: 'Lora', serif;
    font-size: 1.0rem;
}

header, main, footer {
    background: #101010;
    color: #ffffff;
}
main {
    background: #ffffff;
    color: #000000;
}

header {
    font-size: 2.4rem;
    font-weight: 800;
}

main {
    padding: 8px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.25rem 0;
}
h6 {
    font-size: 1.0rem;
}
h5 {
    font-size: 1.2rem;
}
h4 {
    font-size: 1.4rem;
}
h3 {
    font-size: 1.6rem;
}
h2 {
    font-size: 1.8rem;
}
h1 {
    font-size: 2.0rem;
}

p {
    margin: 0 0 0.25rem 0;
}

main a {
    color: #000066;
    text-decoration: none;
    font-weight: 600;
}
main a:hover {
    color: #cc0000;
    text-decoration: none;
}

footer {    
    padding: 8px 0 8px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* - - nav - - */
nav {
    background: #e0e0e0;
}
nav > ul {
    
    display: flex;
    flex: 1;
    justify-content: space-around;
    
    width: 100%;
    
    list-style: none;  
    
}
nav > ul > li {
    
}
nav > ul > li > a {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
}
/* - - - - - - - - */

