:root {
	--primary-color: #455363;
	--background-color: #1f2935;
	--text-color: #fff;
}

body {
	margin: 60px auto;
	width: 70%;
	background-color: var(--background-color);
	color: var(--text-color);
}
nav ul, footer ul {
	font-family:'Helvetica', 'Arial', 'Sans-Serif';
	padding: 0px;
	list-style: none;
	font-weight: bold;
}
nav ul li, footer ul li {
	display: inline;
	margin-right: 20px;
}
a {
	text-decoration: none;
	color: #aaa;
}
a:hover {
	text-decoration: underline;
}
h1 {
	font-size: 3em;
	font-family:'Helvetica', 'Arial', 'Sans-Serif';
	color: white;
}
p {
	font-size: 1.5em;
	line-height: 1.4em;
}
footer {
	border-top: 1px solid #d5d5d5;
	font-size: .8em;
	background-color: var(--primary-color);
	color: var(--text-color);
}

ul.posts { 
	margin: 20px auto 40px; 
	font-size: 1.5em;
}

ul.posts li {
	list-style: none;
}
