/* General styles */

@import url('https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css');

a:link, a:visited {
    color: #777;
}
a:hover {
    color: #000;
}

/* Structure */

#page {
    max-width: 960px;
    margin: 2em auto;
    padding: 0 1em;
}

#header {
    padding-bottom: 1em;
    border-bottom: 1px solid #ddd;
    text-align: center;
}
#header h1 {
    font-size: 24px;
    font-weight: normal;
    margin: 0;
}
#header .description {
    margin-top: 1em;
    color: #999;
}

#content {
    margin: 2em 0;
}

#sidebar {
    width: 19%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background: #222;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.post {
    margin-bottom: 1.4em;
}
.post h2 {
    font-size: 18px;
    font-weight: normal;
}

.entry {
    width: 100%;
}

.entry .postmetadata {
    font-size: 12px;
    margin-top: 1em;
    color: #999;
}

#sidebar ul {
    padding: 1em;
    list-style: none;
}

#sidebar li {
    text-transform: uppercase;
    margin-bottom: 0.7em;
}

#sidebar a,
#sidebar a:hover {
    color: #fff;
    padding: 0.5em;
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
}

#footer {
    font-size: 11px;
    padding: 4em 0;
    text-align: center;
    border-top: 1px solid #ddd;
    color: #999;
}