:root {
    --black: #000000;
    --blue-green: #085f6c;
    --dark-blue-green: #09151d;
    --extra-dark-blue-green: #020507;
    --red: #9e0f0f7e;
    --padding: 64px;
    --width: 800px;
}

h1,
h2,
h3,
h4,
h5 {
    color: #ddd;
    font-weight: 400;
}

b,
strong {
    color: #fff;
}

a {
    color: #eee;
}

a:visited {
    text-decoration: underline;
    text-decoration-color: var(--red);
    text-decoration-thickness: 2px;
}

a:hover {
    text-decoration: underline;
    text-decoration-color: var(--blue-green);
    text-decoration-thickness: 2px;
}

nav > a {
    color: #aaa;
    text-underline-offset: 4px;
    text-decoration: none;
}

a.active {
    color: #ddd;
    text-decoration: underline;
    text-decoration-color: var(--red);
    text-decoration-thickness: 2px;
}

html {
    color: #aaa;
    font-family: "iA Writer Mono", monospace;
    text-underline-offset: 2px;
    font-size: 1.2em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: var(--dark-blue-green);
}

body {
    width: var(--width);
    padding: var(--padding);
    margin: 0px;
    display: flex;
    flex-direction: column;
    background-color: var(--extra-dark-blue-green);
}

.header {
    width: 600px;
    margin-left: 100px;
    display: flex;
    justify-content: space-between;
}

.post-header {
    display: flex;
    justify-content: space-between;
}

.site-title {
    color: #fff;
    font-weight: 500;
    font-size: 60px;
    margin-top: 35px;
    margin-bottom: 10px;
}

.post-site-title {
    color: #fff;
    font-weight: 500;
    font-size: 52px;
    margin: 0px;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: left;
    font-size: 1.2em;
    margin-bottom: 35px;
}

.post-header > nav {
    margin-bottom: 0px;
    vertical-align: bottom;
    line-height: 62px;
}

.block {
    border: 1px dotted white;
    padding: 5px 15px;
    margin: 0 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.block h1 {
    font-size: 1em;
    text-align: center;
    margin-bottom: 0;
}

.small {
    font-size: 0.8em;
}

.wave {
    background: #111;
    color: #fff;
    text-shadow: 1px 1px 10px #fff, 1px 1px 10px #ccc;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

hr {
    margin: var(--padding) 0px;
    margin-left: -64px;
    width: calc(var(--width) + 2 * var(--padding));
    border: solid var(--dark-blue-green) 2px;
}

#full-image {
    border-top: solid var(--dark-blue-green) 4px;
    border-bottom: solid var(--dark-blue-green) 4px;
    width: calc(var(--width) + 2 * var(--padding));
    margin-left: -64px;
}
