/* Basis-Stile */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f4f4;
}

header {
    width: 100%;
    background-color: #333;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-width: 100px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin: 0;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
}

#about {
    text-align: center;
    background-color: #f9f9f9;
    padding: 50px;
    margin-bottom: 20px;
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.about-image {
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.programming-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: absolute;
    transform: translateY(50px);
}

.programming-logos img {
    max-width: 100px;
    max-height: 100px;
    position: relative;
}

.programming-logos img:nth-child(1) { top: -200px; left: -270px; }
.programming-logos img:nth-child(2) { top: 100px; left: -390px; }
.programming-logos img:nth-child(3) { bottom: 50px; left: -510px; }
.programming-logos img:nth-child(4) { top: -255px; right: 140px; }
.programming-logos img:nth-child(5) { top: -370px; left: -100px; }
.programming-logos img:nth-child(6) { top: -370px; right: -380px; }
.programming-logos img:nth-child(7) { top: -330px; right: -400px; }
.programming-logos img:nth-child(8) { top: -165px; right: -270px; }
.programming-logos img:nth-child(9) { top: -120px; right: -650px; }

.about-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    color: #333;
    margin: 20px 0;
    text-align: justify;
}

section {
    width: 80%;
    margin-bottom: 20px;
    text-align: left;
}

h1 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    color: #222;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

p {
    font-family: 'Verdana', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.section-image {
    height: 250px;
    width: auto;
    float: left;
    margin-right: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: #fff;
    margin-top: 20px;
}

/* Media Queries für Tablet-Ansicht */
@media only screen and (max-width: 768px) {
    .about-text {
        font-size: 16px;
    }

    h1 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }

    .section-image {
        height: 200px;
    }
}

/* Media Queries für Handy-Ansicht */
@media only screen and (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav li {
        margin: 10px 0;
    }

    .about-text {
        font-size: 14px;
    }

    h1 {
        font-size: 20px;
    }

    p {
        font-size: 12px;
    }

   
}