body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color:#a8d5ba ; /* sehr helles Grün */
    color: #2e4d34; /* dunkles Grün */
}
 
/* Header und Navigation */
header, nav, footer {
    background-color: #FAF8F1; /* pastellgrün */
    padding: 10px;
    text-align: center;
    border-radius: 20px;
}
 
h1, h2, h3 {
    color: #2e7d32; /* sattes Grün */
}
h1 {
    font-family:Georgia, 'Times New Roman', Times, serif
}
h2{
    font-family:'Times New Roman', Times, serif
}
 h3{
    font-family: Georgia, 'Times New Roman', Times, serif;
 }
nav a {
    color: #599164;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

 
nav a:hover {
    color: #558b2f; /* lebendigeres Grün */
}
 
/* Hauptinhalt */
.container {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
 
ul {
    list-style-type: square;
    padding-left: 20px;
}
 
li {
    margin-bottom: 10px;
}
 
/* Bild oben rechts */
.logo-bild {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
 
