body, body a {
	background-color: #2D2D2D;
	color: white;
	font-family: 'Ubuntu', sans-serif;
	margin: auto;
	max-width: 45em;
}

body :focus {
	font-weight: bold;
}

#page-title, #page-title a {
	font-family: 'Ubuntu Mono', monospace;
	padding: 2em 0 2em;
	width: auto;
	font-size: 1em;
}

#terminal {
	
}

#page-title a {
	margin: 10px;
	padding: .2em;
}

#page-title h1 a, .post a {
	color: white;
}

a {
	text-decoration: none;
}

.post a:hover, .post a:focus, .post a:active {
	font-size: 1em;
	color: white;
}

.hover {
	
}

#page-title a:hover::after, .post a:hover::after, .hover::after {
	border-bottom: none;
	content: "";
	display: inline-block;
	background-color: #606060;
	vertical-align: top;
	width: 8px;
	height: 1em; /* Set height to the line height of .text */
	margin-left: 5px;
	-webkit-animation: blink 1s step-end infinite;
	animation: blink 1s step-end infinite;
	/*
	Animation paramaters:
	blink = animation-name,
	1s = animation-duration,
	step-end = animation-timing-function,
	infinite = animation-iteration-count
	*/
}

@-webkit-keyframes blink {
0% {
	opacity: 1.0;
}

50% {
	opacity: 0.0;
}

100% {
	opacity: 1.0;
}
}

@keyframes blink {
0% {
	opacity: 1.0;
}

50% {
	opacity: 0.0;
}

100% {
	opacity: 1.0;
}
}


#content {
	margin: 1em 0 0 1em;
	max-width: 40em;
}

#content ul {
	margin: 0;
	padding: 0;
}

.date-time-title {
	display: inline-block;
}

#post a:hover, #post a:focus, #post a:active {
	font-size: 1em;
	color: white;
}

#posts, #posts a {
	font-family: 'Ubuntu Mono', monospace;
	margin: .5em auto;
	padding-left: 5em;
}

.blog-post {
	padding-left: 6em;
	padding-right: 6em;
	margin: auto;
	/*background-color: red;*/
}

.blog-header, .blog-post-subheader {
	/*	background-color: navy;*/
	font-family: 'Ubuntu Mono', monospace;
	font-size: 1em;
	margin: .5em;
}

.blog-post-subheader {
	font-size: .8em;
	opacity: .5;
}

.blog-post-content {
	margin: auto;
	font-size: .9em;
	line-height: 1.25;
}

.blog-header::after {
	width: 100%;
	height: 3px;
	background: green;
	content: ""
}

hr {
	display: block;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	margin-left: auto;
	margin-right: auto;
	border-style: dotted;
	border-width: 1px;
	color: silver;
	/*background-color: pink;*/
}

pre, code {
	font-family: 'Ubuntu Mono', monospace;
	font-size: 1em;
}

pre {
	margin-left: 2em;
	overflow: scroll;
}

footer {
	text-align: center;
	padding: 2em 0 2em;
	font-size: 11px;
}

footer a:hover {
	text-decoration: underline;
}
