#articles {
    display: flex;
    flex-direction: column;
}

.article {
    position: relative;
    display: flex;
    font-family: 'Montserrat', sans-serif;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    max-width: max(600px, 60%);
}

#articles a  {
    color: inherit;
    text-decoration: none;
}

.article a:visited {
    color: grey;
}

.article a {
    color: inherit;
}

#articles .overview {
    margin: 0.7em 0;
}

#articles .overview h1,
#articles .overview h2,
#articles .overview h3,
#articles .overview h4,
#articles .overview h5,
#articles .overview h6 {
    margin: 0;
}

#articles .date, .article .date {
    margin-top: 0.7em;
    font-size: 0.8em;
}

.article .date {
    margin-bottom: 1em;
}


#articles .subtitle {
    font-weight: 300;
    margin-top: 0.5em;
}

#articles #sorter {
    font-size: 0.9em;
}

.article table {
    margin: auto;
}

.article img {
    display: block;
    margin: auto;
}

#articles .title, .article h1 {
    font-family: 'EB Garamond', serif;
    font-size: 1.6em;
    line-height: 1;
}

.article h1 {
    margin: 0;
}

.article h2 {
    font-family: 'EB Garamond', serif;
    font-size: 1.4em;
    margin: 1em 0 0 0;
}

.article h3 {
    font-family: 'EB Garamond', serif;
    font-size: 1.2em;
    margin: 1em 0 0 0;
}

.article h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.1em;
    margin: 1em 0 0 0;
}

.article h5 {
    font-family: 'EB Garamond', serif;
    font-size: 1.05em;
    margin: 1em 0 0 0;
}

.article h6 {
    font-family: 'EB Garamond', serif;
    font-size: 1em;
    margin: 1em 0 0 0;
}

.video-container, .image-container {
    margin: 1em 0;
}

img.lazy {
    max-height: 20px;
}


/* For embedded video */

.video-container { 
    position: relative; 
    padding-bottom: 56.25%; 
    padding-top: 30px; 
    height: 0; 
    overflow: hidden; 
}

.video-container iframe, .video-container object, .video-container embed { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
}