
html, body {
    margin: 0;
}

body {
    font-family: "Lucida Console";
    display: flex;
    flex-direction: column;
    align-items: center;
}

body > header {}

body > header > hr {
    width: 60%;
}

body > footer {}

main {
    width: 80%;
    max-width: 800px;
}

main#index {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main#index > hr {
    width: 100%;
}

main#index > #listed-items {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#listed-items > article.listed-item {
    display: flex;
    flex-direction: column;
}

#listed-items > [role="separator"] {
    display: flex;
    justify-content: center;
    margin: 10px;
}

#listed-items > #empty {
}

article.listed-item > a {
    font-size: 1.3em;
    margin-bottom: 5px;
}

article.listed-item > summary {
    line-height: 1.4
}

main#post {
    display: flex;
    flex-direction: column;
}

main#post > header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

main#post > header h2 {
    font-size: 1.1em;
    font-weight: normal;
    margin: 0;
}

main#post > header hgroup {
    display: flex;
    flex-direction: column;
    align-items: center;
}


p {
    font-size: 1.3rem;
}

code {
    background: #dcdcdc;
    border-radius: 5px;
    font-size: 1.0rem;
    color: #a00000;
}
