* {
    font-family:"Helvetica Neue", Arial, sans-serif;
    font-weight:100;
    font-size: 1em;
    margin:0.2rem;
    padding: 0.4rem;
    box-sizing: border-box;
    color: #fff;
}

html {
    background: #334;
}

h1 {
    font-size: 2.3em;
}

h2 {
    font-size: 1.8em;
}

h3 {
    font-size: 1.5em;
}

h4 {
    font-size: 1.3em;
}

h5 {
    font-size: 1.2em;
}

h6 {
    font-size: 1.1em;
}

p {
    font-size: 0.9em;
    font-weight: 400;
}

header {
    background: #FFF;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    box-shadow: 0 -10px 20px 10px #334A;
    padding: 0 1em;
    z-index: 100;
}

header * {
    float: left;
    color: #FFFF;
}

header > h5 {
    padding-top: 1.1rem;
    margin-left: -0.8rem;
    color: #FFFD;
}

header > img.logo {
    height: 3em;
    margin: auto;
}

footer {
    bottom: 0;
    position: fixed;
    width: 100%;
    padding: 0;
    margin: 0;
    left: 0;
    text-align: center;
}

footer > p {
    color: #3344;
}

nav {
    position: fixed;
    margin: 0;
    width: 100%;
    left: 0;
    top: 0;
    padding: 0.8em;
    z-index: 101;
    text-align: right;
}

nav > i {
    border: 1px solid #3344;
    width: 1.5em;
    height: 1.5em;
    padding: 0;
    margin: 0;
    display: inline-flex;
    border-radius: 50%;
    cursor: pointer;
}

nav > i.indicator {
    background: #3349;
}

section {
    margin: 0;
    position: fixed;
    opacity: 0;
    top: 4.5em;
    height: calc(99vh - 8em);
    left: 103vw;
    width: 94vw;
    border: 1px solid #EEE;
    overflow: hidden;
    border-radius: 0.4em;
    background-color: #FFFF;
    box-shadow: 0 10px 20px -20px #3347;
    transition: left 300ms ease-in 450ms, box-shadow 200ms linear, top 200ms linear, height 200ms linear, opacity 500ms linear;
    z-index: 1;
    padding: 0;
}

section.current {
    top: 3.6em;
    left: 3vw;
    opacity: 1;
    height: calc(99vh - 6em);
    transition: left 500ms ease-out 50ms;
    z-index: 2;
    box-shadow: 0 20px 20px -20px #3347;
}

section > h1 {
    position: absolute;
    width: 100%;
    margin: 0;
    padding: 0.4em 0.5em;
    color: #888;
}

section > div {
    top: 4em;
    position: absolute;
    overflow-y: scroll;
    margin: 0;
    width: 100%;
    height: calc(100% - 4.5em);
}

article {
    border-left: 2px solid #DDD;
    text-align: center;
    margin: 0 0 1em 0;
}

article.white-border {
    border-color: #FFF;
}

article.red-border {
    border-color: #EA4335;
}

article.green-border {
    border-color: #34A853;
}

article.blue-border {
    border-color: #4285F4;
}

article.yellow-border {
    border-color: #FBBC05;
}

article > img {
    width: 100%;
    max-height: 20em;
    max-width: 35em;
    padding: 0;
    margin: 0;
    object-fit: contain;
}

article > p.date {
    text-align: left;
    font-size: 0.8em;
    color: #668;
    padding: 0;
}

img.border {
    border: 1px solid #ddd;
    padding: 0.5em;
}

a {
    text-decoration: none;
    color: #FFF;
    background: #3346;
    border-radius: 0.4em;
    display: block;
    width: fit-content;
    margin: auto;
    font-weight: 400;
}

a:hover {
    background: #FFF1;
}

div.inline > span {
    font-size: 1em;
    display: inline-block;
}
