/* Allgemeine Einstellungen */
body {
    background-color: #2E2E2E;
    color: #F5F5F5;
    font-family: 'Old Standard TT', serif;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Lobster', cursive;
    color: #FFD700;
    text-align: center;
    margin-top: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li  {                           /* a rausgenommen */
    color: #F5F5F5;
    text-decoration: none;
    font-size: 1.0em;                /* war 1.2 */
}

nav ul li :hover {              /* a rausgenommen */
    text-decoration: underline;
}


a {
    color: #05b505; /* Linkfarbe org. grau #F5F5F5; */ 
    text-decoration: none; /* Unterstreichung entfernen */
}

a:hover {
    color: #2E2E2E; /* Hintergrundfarbe bei Hover */
    background-color: #F5F5F5; /* Textfarbe bei Hover */
    text-decoration: underline; /* Unterstreichung beim Hover */
}


footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
}
