:root {
	--background-color: #ededed;
	--text-color: #212121;
	--hyperlink-color: #0066bf;
}

html {
	font-size: 21px;
	font-family: Charter,Georgia,Cambria,"Times New Roman",Times,serif;
}

body {
	padding: 0;
	margin: 60px 20px 60px 20px;
	color: var(--text-color);
	background-color: var(--background-color);
	
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

#container {
	max-width: 700px;
	margin: auto;
}

h1 {
	font-size: 2rem;
	font-weight: 400;
	font-style: normal;
	line-height: 1.25;
	margin-top: 1.5em;
}

p {
	font-weight: 400;
	font-style: normal;
	line-height: 1.58;
	
	display: block;
	margin-top: 1em;
	margin-bottom: 1em;
}

a {
	color: var(--hyperlink-color);
}
a:hover { color: var(--text-color); }

.byline { 
	display: flex;
	align-items:center;
	line-height: 1.5em;
}

.article-list {
	font-size: 1rem;
}

.article-list-footer {
	font-size: 0.62rem;
	text-align: center;
	margin-top: 50px;
}

.article-list .date, .byline, .image-caption {
	font-size: .76em;
	font-family: "Lucida Grande","Lucida Sans Unicode","Lucida Sans",Geneva,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: 400;
}

.article-list .date, .byline .date {
	font-size: .62rem;
	color: #757575;
}

a.author {
	color: var(--text-color);
	text-decoration: none;
}
a.author:hover {
	text-decoration: underline;
}

.image-caption {
	text-align: center;
	color: #424242;
	margin-top: 0.5em;
	margin-bottom: 2em;
}

.article-image {
	width: 100%;
	margin-top: 1.5em;
}

.profile-photo {
	width: 80px;
	height: 80px;
	border-radius: 40px;
	margin-right: 12px;
}

@media all and (max-width:767px) { 
	h1 { font-size: 36px; }
	p { font-size: 18px; }
	.image-caption { font-size: 13px; }
}