/* static/css/about.css */

/* Grund-Layout für alle sections auf dieser Seite */
.about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Überschriften-Stil */
.about-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Absatz-Stil */
.about-text {
    max-width: 768px;
    font-size: 1.125rem;
    margin: 0 auto;
    text-align: center;
    color: #333;
}

/* Icon / Logo neben Text */
.about-icon {
    width: 2rem;
    height: 2rem;
}

/* Wrapper für Skills oder Tools */
.about-skill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

body.dark-mode .about-section {
    background-color: #121212;
}

body.dark-mode .about-text {
    color: #f0f0f0;
}

.about-image {
    max-width: 100px;
    height: 100px;
    margin-bottom: 2rem;
} 

.about-section .bild1 img {
    height: 100px;
    width: 200px;
}

@media (max-width: 768px) {
    section {
        padding: 20px;
    }
}
