@font-face {
  font-family: "Libre Bodoni";
  src: url(/static/libre-bodoni-regular.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Libre Bodoni";
  src: url(/static/libre-bodoni-italic.ttf);
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "U001";
  src: url(/static/u001-reg.ttf);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "U001";
  src: url(/static/u001-ita.ttf);
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "U001";
  src: url(/static/u001-bol.ttf);
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "U001";
  src: url(/static/u001-bolita.ttf);
  font-weight: bold;
  font-style: italic;
}

body {
    font-family: "U001", sans-serif;
    padding: 0;
    margin: 0;
    font-size: 115%;
}

#container {
    background-color: #fff;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

header > div {
    display: flex;
    flex-flow: column nowrap;
}

header > img {
    height: 150px;
    width: 150px;
}

#site_title {
    font-family: "Libre Bodoni", serif;
    font-size: 250%;
}

#site_title a {
    color: #000;
    text-decoration: none;
}

#site_title em {
    font-family: "Libre Bodoni", serif;
    font-style: italic;
    color: #ff0d0d;
}

#site_subtitle {
    margin: 0;
}

#site_nav {
    font-weight: bold;
    font-size: 110%;
    margin-top: auto;
}

#site_nav > div {
    display: inline-block;
    margin-right: 10px;
}

#intro {
    margin-top: 10px;
}

.eyes_only {
    font-variant: small-caps;
}

article {
    border-top: 2px solid black;
    margin-top: 30px;
    hyphens: auto;
}

article img {
    width: 100%;
}

.article_title {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: baseline;
}

h1 {
    margin-top: 0;
    margin-bottom: 0;
}

h1 a {
    color: #000;
    text-decoration: none;
}

.post_date {
    color: #444;
}

h2 {
    border-top: 1px solid black;
}

p {
    text-align: left;
    line-height: 1.3;
}

hr {
    border: none;
    border-top: 1px solid black;
    margin-top: 5px;
    margin-bottom: 5px;
}

#read_more {
    text-align: right;
    font-weight: bold;
    margin-bottom: 20px;
}

#article_changer {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 10px;
}

footer {
    border-top: 2px solid black;
    margin-top: 10px;
}

#signature {
    margin-top: 10px;
    margin-left: 80px;
}

blockquote {
    margin-left: 0px;
    border-left: 2px solid #ff0d0d;
    padding-left: 40px;
}

article.full > p:last-of-type:after {
    content: "";
    margin-left: 0.5ex;
    background: url("/static/endmarker.svg");
    background-size: contain;
    display: inline-block;
    height: 1.5ex;
    width: 1.5ex;
}

#read_archive {
    text-align: center;
    font-weight: bold;
}

#classification {
    margin: 10px 0;
    background-color: red;
    color: white;
    text-align: center;
    font-size: 110%;
    font-weight: bold;
}

.footnotes {
    color: #333;
    size: 90%;
}