/*Blog Page Style*/

body {
	background: black;
	color: white;
	font-family: "Courier New", monospace;
}

li a, a:hover {
	color: red;
}

li a, a {
	color: white;
	font-family: "Courier New", monospace;
}

ul {
	list-style-image: url('rvklein-symbol.png');
	list-style-type: circle;
}

/* Main Content */

.container {
	display: grid;
	position: relative;
	width: 100%;
	grid-template-rows: 0.10fr 0.05fr 1fr 0.25fr;
	margin: 0 auto;
	grid-template-areas:
		"header"
		"navigation"
		"content"
		"footer";
	margin-top: 90px;
}

.header {
	grid-area: header;
	display: grid;
	justify-self: center;
	grid-auto-flow: row;
	grid-template-columns: 0.5fr 1fr 0.5fr;
	grid-template-areas:
		"left title right";
	position: relative;
}

.title {
	grid-area: title;
	width: 600px;
	border-bottom: initial;
}

.left {
	grid-area: left;
	position: absolute;
	z-index: 1;
	top: -68px;
	left: 280px;
}

.left img {
	width: 100px;
}

.right {
	grid-area: right;
	position: absolute;
	z-index: 1;
	top: 36px;
	right: 81px;
}

.right img {
	width: 200px;
}

.navigation {
	grid-area: navigation;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
}

.navigation ul {
  list-style-image: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.navigation ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navigation ul li a:hover {
  background-color: #282828;
}

.content {
	grid-area: content; 
	padding: 10px 50px 10px 50px;
	line-height: 0.5;
	margin: 0 auto;
	width: 100%;
}

.footer { 
	grid-area: footer;
	font-size: 12px;
	text-align: center;
	display: block;
	width: 100%;
	margin: 0 auto;
	background: black;
	border-top: 1px solid white;
	padding-top: 10px;
}

.footer table {
	margin: 0 auto;
}

.footer #cca {
	width: 1000px;
}