

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ddf0e1;
    color: #333333;
    line-height: 1.6;
}

header {
    background-color: #3c5c44;
    color: white;
    padding: 50px 10%;
}

header h1 {
    font-family: Courier New, sans-serif;
    margin-top: 0;
    font-size: 40px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-right: 25px;
}

nav a:hover {
    text-decoration: underline;
}


main {
    width: 80%;
    max-width: 1200px;
    margin: 40px auto;
}

section {
    margin-bottom: 60px;
}

h2 {
    font-size: 32px;
}

h3 {
    color: #665c4c;
}


img {
    max-width: 100%;
    height: auto;
}

.start img {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
}

.grosses-bild {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}



.karten {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.karte,
.projekt,
.teammitglied {
    background-color: white;
    padding: 20px;
    width: 280px;
}

.projekt img,
.teammitglied img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


.notiz {
    font-style: italic;
    color: #666666;
}


.button {
    display: inline-block;
    background-color: #665c4c;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    margin-top: 15px;
}

.button:hover {
    background-color: #403a31;
}


table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    margin-bottom: 30px;
}

td {
    border: 1px solid #cccccc;
    padding: 12px;
}

td:first-child {
    font-weight: bold;
}


.bildergalerie {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.bildergalerie img {
    width: 30%;
    min-width: 250px;
}


footer {
    background-color: #3c5c44;
    color: white;
    text-align: center;
    padding: 25px;
}

footer a {
    color: white;
}


@media (max-width: 700px) {

    nav a {
        display: block;
        margin-bottom: 10px;
    }

    main {
        width: 90%;
    }

    .karte,
    .projekt,
    .teammitglied {
        width: 100%;
    }

    .bildergalerie img {
        width: 100%;
    }
}