body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: url('wiese.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white; /* Textfarbe, um Kontrast zu gewährleisten */
}

header {
    background: rgba(255, 127, 0, 0.7); /* Halbtransparenter grüner Header */
    color: white;
    padding: 1rem 0;
    text-align: center;
}

section {
    padding: 20px;
    background: rgba(255, 255, 255, 0.8); /* Halbtransparenter Hintergrund für Lesbarkeit */
    color: black;
    border-radius: 10px; /* Abgerundete Ecken */
    max-width: 800px;
    margin: 20px auto;
}

footer {
    background: rgba(255, 127, 0, 0.7);
    color: white;
    text-align: center;
    padding: 10px 0;
}


nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}



section#home {
    background: #ffe4c4;
    padding: 50px 20px;
}


table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    text-align: left;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
}

table th {
    background-color: #ff7f00;
    color: white;
    text-align: center;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f1f1f1;
}

.profile-picture {
    display: block;
    margin: 20px auto;
    border-radius: 50%; /* Rundes Bild */
    width: 60%; /* Breite des Bildes */
    height: 250px; /* Höhe des Bildes */ 
    object-fit: cover; /* Bild proportional zuschneiden */
    border: 3px solid #ff7f00; /* Rahmen um das Bild */
}





@media screen and (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }
    
    section {
        padding: 10px;
    }
    
    footer {
        font-size: 0.9rem;
    }
}

