body
{
  position: relative;
  font-family: Georgia;
  font-size: 12pt;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}

header
{
  border-bottom: 4px solid #800000;
  height: 50px;
  padding: 10px 0 0 31px;
  background: #808080;
}

h1
{
  margin: 0;
  padding: 0;
}

nav
{
  position: absolute;
  left: 20px; /*Das sind die 20 Pixel Abstand*/
  top: 60px;
  padding: 0 10px;
  display: block;
  width: 178px;
  background: #808080;
  border: 4px solid #800000;
  border-top: 0;
  border-radius: 0 0 15px 15px;
}

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

nav li
{
  margin: 5px 0;
}

nav li > a
{
  color: #444;
}

nav li > a:hover
{
  color: #000000;
  text-decoration: none;
}

article
{
  margin-left:250px;
  margin-bottom:2em;
  position: relative;
  display: block;
  border-left: 4px #000000 solid;
  padding-left: 8px;
  background: #FDFDFD;
}

.project
{
  margin-left:30px;
  margin-bottom:2em;
  position: relative;
  display: block;
  border-left: 4px #800000 solid;
  padding-left: 8px;
  background: #FDFDFD;
}

.add
{
  width: 26%;
  font-size: 14pt;
  font-style: italic;
  margin-left: 250px;
  margin-top: 45px;
  border: 2px solid #800000;
  border-radius: 5px;
  background: #ACABAB;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.8);
}

footer
{
  text-align: center;
}

a:link {
  color: #800000;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: #696969;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: #696969;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: sans-serif;
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
thead tr {
  background-color: #800000;
  color: #ffffff;
  text-align: left;
}
th, td {
  padding: 12px 15px;
}
tbody tr {
  border-bottom: 1px solid #dddddd;
}
tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}
tbody tr:last-of-type {
  border-bottom: 2px solid #800000;
}
tbody tr.active-row {
  font-weight: bold;
  color: #800000;
}