* {
    box-sizing: border-box;
}

h1, h2, h3 { font-weight: 300; }

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 80ch;
    padding-left: 2ch;
    padding-right: 2ch;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    max-width: 80ch;
    padding: 1ch;
    border-bottom: 1px solid rgba(0, 0, 0, .8);
}

footer {
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: 100%;
    max-width: 80ch;
    padding: 1ch;
    border-top: 1px solid rgba(0, 0, 0, .8);
}

.nav-link {
	font-family: "Open Sans", "DejaVu Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: rgba(0, 0, 0, .8);
    text-decoration: none;
}

.nav-link:hover {
    color: rgba(0, 0, 0, .8);
    text-decoration: underline;
}

.site-title {
    font-size: 1.5em;
}

.footer-link {
    padding-left: 2ch;
    font-family: "Open Sans", "DejaVu Sans", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    white-space: nowrap;
}
.footer-link > .fa {
    color: rgba(0, 0, 0, .8)
}
footer > p {
    margin-bottom: 0;
}

.about-text {
    font-family: "Open Sans", "DejaVu Sans", sans-serif;
	font-style: normal;
    color: #828282;
}

.post-list {
    margin-left: 0;
    list-style: none;
    align-self: center;
}

.post-list > li {
    margin-top: 2em;
}

.post-list h2 {
    margin-top: 0;
    font-size: 2em;
}

.post-meta {
    color: #828282;
}

.post-link {
    display: block;
    text-decoration: none;
    color: #ba3925;
}

.post-link:hover {
    color: #ba3925;
    text-decoration: underline;
}

pre.pygments  { background: #f7f7f8; }
