/*Haupt-Styles*/
body {
    font-family: Verdana, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #ff9900;
    background-size: cover; /* Bild füllt gesamte Breite, Höhe wird automatisch angepasst */
    background-position: center center; /* Bild wird mittig zentriert */
    background-attachment: fixed; /* Hintergrund fixieren für Parallax-Effekt */
    background-repeat: no-repeat; /* Keine Wiederholung des Bildes */
}
header {
    background: #ff9900;
    color: #437742;
    padding: 10px 0;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
}
main {
    padding: 10px;
}
section {
    margin-bottom: 20px;
}
footer {
    text-align: center;
    padding: 10px 0;
    background: #ff9900;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
div {
    width: 100%;
}

a {
    color: darkgreen; /* Standard-Linkfarbe */
    text-decoration: none; /* Entfernt Unterstreichung */
    font-weight: bold;
}

a:hover {
    text-decoration: underline; /* Unterstreichung bei Hover */
}
