
body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f5faff;
    color: #222;
}
header {
    background-color: #0077cc;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    overflow: hidden;
    max-width: 100%;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s, background-color 0.3s;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    white-space: nowrap;
    display: inline-block;
}

    nav a:hover {
    background-color: #66aaff;
    color: white;
}

    nav a.active {
    background-color: #005fa3; 
    color: white; 
}
section {
    scroll-margin-top: 100px;
    padding: 4rem 2rem 2rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}
section h2 {
    color: #0077cc;
    font-size: 2rem;
    margin-bottom: 1rem;
}
section p {
    line-height: 1.6;
}

.content {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.inside-frame {
    background-color: white;
    border: 2px solid #0077cc;
    border-radius: 8px;
    padding: 1.5rem;
    padding-top: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.center-link {
    text-align: center;
    margin-top: 1.5rem;
}

.center-link a {
    text-decoration: none;
    color: #0077cc;
    font-weight: bold;
    font-size: 1.2rem;
}

.center-link a:hover {
    color: #005fa3;
}

.project {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.project h2 {
    color: #0077cc;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

.project-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.project-images img {
    flex: 1 1 300px;
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-height: 250px;
    object-fit: contain;
}

.project-location {
    font-style: italic;
    color: #555;
    text-align: right;
    font-size: 0.95rem;
}

.project-divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 3rem auto;
    width: 40%;
}

.ueber-mich a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.ueber-mich a:hover {
    text-decoration: underline;
    color: #000;
}

.ddd{
    
    color: #0077cc;
    color: #005fa3;
}
footer {
    background-color: #0077cc;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .project {
        padding: 1rem;
    }

    .project h2 {
        font-size: 1.2rem;
    }

    .project p {
        font-size: 0.95rem;
    }

    .project-location {
        text-align: center;
        font-size: 0.9rem;
    }

    .project-divider {
        width: 90%;
    }
}