* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

ul, ol {
  padding-left: 1em;
}

body {
	font-family: sans-serif;
	background-color: #94070a;
}

#wrapper {
	width: 1000px;
	margin: 0 auto;
	background-color:#a39696;
}

header {
	position: fixed;
	height: 100px;
	width: 800px;
  	border-bottom: 1px solid black;
  	border-right: 1px solid black; 
  	top: 0px;
    margin-left: 200px;
	z-index: 20;
}

nav {
	background-color:#a39696;
	width: 200px;
	height: 100%;
	float: left;
	border-left: 1px black solid;
	overflow: auto;
	position: fixed;
	top: 0px;
}

nav ul {
	list-style-type: none;
	padding: 0;
}

nav a {
	color: #94070a;
	display: block;
	padding: 1em 1em;
	text-decoration: none;
}

nav a.aktiv{
	color: white;
	background-color: #94070a;
}

nav a:hover:not(.aktiv) {
	color: white;
	background-color: #94070a;
}

section {
	width: 800px;
	height: 100%;
	float: left;
	background-color: #a39696;
	color: #94070a;
	margin-top: 100px;
	margin-left: 200px;
	border-left: 1px black solid;
	border-right: 1px black solid;
	text-align: left;
	padding: 5px;
}

.titel {
	text-align: center;
	font-size: 24px;
}

.inhalt {
	margin-top: 40px;
	padding-bottom: 40px;
}

.inhalt h1 {
	font-size: 24px;
}

.inhalt h2 {
	font-size: 22px;
	padding-top: 15px;
}

.inhalt h3{
	font-size: 20px;
	padding-top: 10px;
}

.inhalt p {
	padding-top: 5px;
}

.timeline {
    position: relative;
    margin: 40px auto;
	padding: 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #94070a;
}

.timeline ul {
    margin: 0;
    padding: 0;
}

.timeline ul li {
    list-style: none;
    line-height: normal;
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline ul li:nth-child(odd) {
    float: left;
    text-align: right;
    clear: both;    
}

.timeline ul li:nth-child(even) {
    float: right;
    text-align: left;
    clear: both;    
}

.content {
    padding-bottom: 20px;
}

.timeline ul li:nth-child(odd):before {
    content: '';
    position: absolute;
    top: 24px;
    right: -6px;
    width: 10px;
    height: 10px;
    background: #94070a;
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.timeline ul li:nth-child(even):before {
    content: '';
    position: absolute;
    top: 24px;
    left: -4px;
    width: 10px;
    height: 10px;
    background: #94070a;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.timeline ul li h3 {
    margin: 0;
    padding: 0;
    font-weight: 600;
    color: #94070a;
}

.timeline ul li p {
    margin: 10px 0 0;
    padding: 0;
    font-weight: 600;
    color: #94070a;
}

.timeline ul li .time h4 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #c5c5c5;
}

.timeline ul li:nth-child(odd) .time {
    position: absolute;
    top: 12px;
    right: -105px;
    margin: 0;
    padding: 8px 16px;
    background: #94070a;
    color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.timeline ul li:nth-child(even) .time {
    position: absolute;
    top: 12px;
    left: -105px;
    margin: 0;
    padding: 8px 16px;
    background: #94070a;
    color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}