/* style.css */

body {
    background-color: #98A675; /* Hintergrundfarbe */
    color: #fff; /* Schriftfarbe */
    font-family: Verdana, sans-serif; /* Schriftarten */
    margin: 0;
    padding: 0;
}

header {
    background: #98A675;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-family: Quicksand, sans-serif; /* Schriftart für Header */
}

nav {
    display: flex;
    justify-content: center;
    background: #444;
}

nav a {
    color: #fff;
    padding: 14px 20px;
    text-decoration: none;
    font-family: Verdana, sans-serif; /* Schriftart für Links */
}

nav a:hover {
    background: #98A675;
}

.container {
    padding: 20px;
}

.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
    }
}