@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro|Merriweather");

:root {
  --highlight-color: #514D63;
  --banner-color: #A4AD87;
  --back-color: #EDECD5;
  --text-color: #454545;
}

body {
  background-color: var(--back-color);
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  margin: 0 0;
}

h1, h2, h3, h4, h5 {
  font-family: "Merriweather", Helvetica, Arial, sans-serif;
  color: var(--highlight-color) !important;
  margin: 0 0 15px 0;
}

a {
  color: var(--highlight-color) !important;
  text-decoration: none;
}

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

.banner {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: var(--banner-color);
}

.banner-text {
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  width: 75%;
  font-size: 1.2em;
  color: var(--highlight-color);
}

p.head {
  margin: 10px 0;
}

.main {
  display: flex;
  flex-direction: row;
  padding: 20px;
  max-width: 75%;
}

@media screen and (max-width: 1000px) {
  .main {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
}

.content {
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  flex: 3;
}

.sidebar {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sidebar li a {
  margin-right: 5px;
}

.sidebar li span {
  color: var(--text-color);
}

.sidebar .posts {
  margin-top: -25px;
}

.sidebar .posts ol {
  list-style: none;
  padding-left: 0;
}

.summary, .post, .about {
  text-align: justify;
}

.content a, .post a, .about a {
  text-decoration: underline;
}

.content h2 a {
  text-decoration: none;
}

.posts li {
  margin-bottom: 20px;
}

.highlighted {
  margin-right: 15px;
  color: var(--highlight-color) !important;
}

.date {
  font-size: 0.9em;
  color: var(--text-color);
}

table.table, .about ol {
  margin-bottom: 30px;
}

table.table td {
  min-width: 300px;
}

.summary p, .post p, .post li, .about p, .about li, table.table {
  font-size: 1.2em;
  line-height: 150%;
  color: var(--text-color);
}

hr {
  border-bottom: 1px solid var(--banner-color);
  margin: 20px 0;
}

img {
  margin: 20px 0;
}

a.jsc {
  img {
    padding-top: 20px;
  }
}

img.side {
  height: 70px;
  width: 70px;
}

blockquote {
  font-size: 1.1em;
  border-left: 3px solid var(--banner-color);
}
