/*

 Simple, unobtrusive CSS that adds value instead of page weight is the best!

 */
body {
    font-family: "Arial", "Helvetica", sans-serif;
    font-size: 1.2em;
    background: #fcf2de;
    margin: 0;
    line-height: 1.2em;
}

a {
    color: #1b8dc1;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

li {
    margin-bottom: .5em;
}

header {
    padding: 2em;
    background: #d16c32;
}

header h1 {
    font-family: courier, monospace;
    line-height: 1.2em;
}

nav ul {
    padding: 0;
    margin: 0
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    display: inline-block;
    padding: 1em;
    text-decoration: none;
    background: #bc2109;
    color: #ddd;
}

nav ul li a:hover {
    text-decoration: none;
    background: #e8e812;
    color: #000
}

blockquote {
    background: #fee;
    border-left: 5px solid #f55;
    padding: .5em 1em;
    font-size: 1.1em;
    line-height: 1.2em;
}

pre.qrcode {
    line-height: 1em;
}

/*MUCH more readable code snippets*/
pre, li pre {
    background: black;
    color: white;
    padding: 10px;
    border-radius: 4px;
    overflow-x: scroll
}

/* inline code needs love too */
p > code, li > code {
    color: #CA0C0C;
    background: #FFF;
}

section#main {
    background: #fcf2de;
    margin: 0;
    padding: 3em 2em;
}

section#main img, section#main iframe {
    display: block;
    margin: auto;
    max-width: 90%;
}

figure {
    margin: 0 1em;
}

figure figcaption {
    text-align: center;
}

section#main h1, section#main h2, section#main h3 {
    line-height: 1.2em;
}

section.status {
    padding-bottom: 1em;
    border-bottom: 2px solid black;
}

section.status img {
    max-width: 100%;
    display: block;
    text-align: center;
    margin: 0.5em 0;
}

@media screen and (max-width: 500px) {
    blockquote {
        font-size: 1em;
        line-height: 1em;
        margin: 0;
    }

    section#main {
        padding: 2em 1em;
    }

    section#main img, section#main iframe {
        display: block;
        margin: auto;
        max-width: 100%;
        width: 100%;
    }
}

/* Very Large screens */

@media screen and (min-width: 960px) {
    section#main {
        width: 950px;
        margin: auto;
        line-height: 1.5em;
    }
}

footer {
    text-align: center;
    padding: 4em 2em;
    background: #d16c32;
}
