* {
    padding : 0px;
    margin: 0px;
    font-family: Arial, Verdana, sans-serif;
}
header {
    height: 100px;
    background-color:#33CC33;
    border-radius: 10px;
}
body {
    width: 800px;
    background-color: black;
    margin: 25px auto;
}
header h1 {
    font-family: Verdana;
    font-style: italic;
    padding-left: 50px;
    color: white;
    font-size: 30pt;
    padding-top: 25px;
    text-shadow: black 1px 1px 4px;
}
header h2 {
    font-family: Verdana;
    font-style: italic;
    color: white;
    font-size: 16pt;
    padding-left: 480px;
    text-shadow: black 1px 1px 4px;
}
nav ul {
    list-style-type: none;
}
nav li {
    display: inline;
    margin-right: 40px;
    background-color: #33CC33;
    padding-right: 35px;
    padding-left: 35px;
    padding-top: 3px;
    padding-bottom: 3px;
    border: #C0C0C0 3px outset;
    border-radius: 5px;
    font-weight: bold;
    cursor: default;
}
nav {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 30px;
}
nav a {
    background-color: black;
    text-decoration: none;
    color: white;
    text-shadow: gray 0px 0px 4px;
}
nav li:hover {
    border: #C0C0C0 3px inset;
}
nav a:hover {
    color: #808080;
    text-shadow: none;
}
section {
    width: 575px;
    float: left;
}
article {
    border: gray 4px groove;
    padding: 20px;
    text-align: left;
    margin-bottom: 25px;
    margin-right: 30px;
}
article h2 {
    font-size: 14pt;
    color: white;
    padding-bottom: 10px;
    letter-spacing: 1px;
    font-weight: bold;
}
article p {
    font-size: 12pt;
    padding-bottom: 10px;
    color: white;
}
/* unvisited link */
article a:link {
    color: #33CC33;
    background-color: black;
}

/* visited link */
article a:visited {
    color: #33CC33;
    background-color: black;
}

/* mouse over link */
article a:hover {
    color: black;
    background-color: #33CC33;
    
}

/* selected link */
article a:active {
    color: #33CC33;
    background-color: #33CC33;
}
article blockquote {
    font-weight: bold;
    font-style: italic;
    font-size: 10pt;
    padding: 15px;
    background-color: #5EBFDF;
    border-radius: 10px;
    color: black;
}
video {
    width: 320px;
    height: 180px;
    float: right;
    border: gray 1px solid;
    border-radius: 5px;
    background-color: #19A3D1;
}
aside {
    text-align: center;
    padding-right: 10px;
    width: 155px;
    float: right;
    color: white;
    padding: 35px;
    background-color: #222222;
    border-radius: 15px;
}
aside h3 {
    font-size: 16pt;
    padding-bottom: 10px;
    font-variant: small-caps;
    padding-top: 25px;
}
aside p {
    font-size: 12pt;
    font-style: italic;
    font-weight: bold;
    color: #E1E1E1;
}
.bild_gross {
    width: 100px;
    height: 100px;
    border: none;
}
.bild_klein {
    width: 50px;
    height: 50px;
    border: none;
}
footer {
    clear: both;
    text-align: center;
    padding: 5px;
    background-color: #33CC33;
    color: black;
    border-radius: 10px;
}
footer p {
    font-size: 12pt;
    font-weight: bold;
    font-family: monospace;
    text-shadow: gray 1px 1px 2px;
}
table {
    text-align: center;
    color: black;
    border: white 1px inset;
    background-color: #5EBFDF;
    float: left;
    margin-right: 20px;
}
td {
    border: white 1px inset;
    padding-right: 5px;
    padding-left: 5px;
}
thead {
    font-weight: bold;
}
td:hover {
    background-color: gray;
}