:root {
    --background: #ecece9;
    --accent-background: #f9f9f6;
    --text-color: #444;
}

* {
    border: 0;
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    font-weight: inherit;
    margin: 0;
    outline: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    background: var(--background);
    font: 1.2rem/1.8rem "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 120px 20px 10px 20px;
    padding: 0;
    text-align: center;
    color: var(--text-color);
}

h1 {
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 0 3em;
}

h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

a {
    color: #0ac;
    text-decoration: none;
}

a.tag {
    display: inline-block;
    padding: 0 .5em;
    background: #0ac;
    border-radius: 5px;
    font-size: .7em;
    color: #eaefe5;
}

p {
    margin: 0 0 .5em 0;
}

p.url {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

section.search-form {
    margin: 0 auto;
    max-width: calc(900px + 3em);
}

input[type="search"] {
    background-color: var(--accent-background);
    border-radius: 20px;
    padding: 1.5em;
    width: 100%;
}

main {

}

article {
    position: relative;
    background-color: var(--accent-background);
    border-radius: 20px;
    max-width: 900px;
    padding: 1.5em;
    margin: 0 auto 4em auto;
    text-align: left;
    overflow: hidden;
}

article small {
    font-size: .8em;
}

header {
    margin-bottom: 1em;
}

header#top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    background-color: var(--accent-background);
    margin: 0;
    z-index: 10;
    text-align: center;
    box-shadow: 0 0 5px rgba(0,0,0,.1);
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px auto;
    max-width: 1000px;
    text-align: left;
}

nav ul {
    padding: 0;
    margin: 0 3em 0 0;
    list-style-type: none;
    font-weight: 200;
}

nav ul li {
    display: inline-block;
    margin: 0 0 0 20px;
}

footer {
    margin-top: 1em;
    font-size: .8em;
    line-height: 1.2em;
    font-weight: 200;
    text-align: right;
}

article footer {
    position: absolute;
    right: 0;
    bottom: -20px;
    background-color: #eaefe5;
    padding: 15px;
    border-top-left-radius: 20px;
    text-align: center;
}

footer.container {
    color: #999;
    max-width: 900px;
    padding: 1em;
    margin: 0 auto 4em auto;
    text-align: left;
}

footer.container strong {
    font-weight: 400;
}

footer.container p {
    margin-bottom: .8em;
}

#bookmarks {
    max-width: 1000px;
    padding: 3em 0;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
}

blockquote {
    margin: 1.5em 10px;
    padding: 0.5em 10px;
    quotes: "\201C" "\201D";
    font-weight: 200;
}

blockquote:before {
    color: #0ac;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.1em;
    vertical-align: -0.4em;
}

blockquote p {
    display: inline;
}
.highlight {
    color: red !important;
}