header h1 {
    font-size: 2.5em;
    margin: 0;
    font-weight: 600;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
}

h2 {
    color: #8e44ad;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 2em;
}

/* Weiße Karten für Abschnitte */
section {
    background-color: white;
    padding: 40px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about, .experience {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about img, .experience img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about div, .experience div {
    flex: 1;
    margin-left: 30px;
}

/* Media Query für Mobilgeräte */
@media (max-width: 768px) {
    .about, .experience {
        flex-direction: column;
        text-align: center;
    }

    .about img, .experience img {
        margin-bottom: 20px;
    }

    .about div, .experience div {
        margin-left: 0;
    }
}

/* Styling für die Hobbies */
#hobbies {
    margin-top: 50px;
    text-align: center;
}

.hobbies-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hobby {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 30%;
    margin: 10px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.hobby:hover {
    transform: translateY(-10px);
}

.hobby i {
    font-size: 3em;
    color: #3498db;
}

.hobby h3 {
    margin-top: 15px;
    color: #3498db;
}

.hobby p {
    margin-top: 10px;
    font-size: 1.1em;
}

.hobby a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.hobby a:hover {
    text-decoration: underline;
}

/* Anpassung der Hobbies bei kleineren Bildschirmen */
@media (max-width: 768px) {
    .hobby {
        width: 100%; /* Hobbies erscheinen in Einzelreihen auf kleinen Displays */
    }
}

/* Styling für Projekte */
#projects {
    margin-top: 50px;
    text-align: center;
}

.projects-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project:hover {
    transform: translateY(-5px); /* Leichter Hover-Effekt */
}

.project-screenshot {
    width: 200px;
    border-radius: 10px;
    margin-right: 20px;
}

.project-details {
    text-align: left;
    flex: 1;
}

/* Stil für Projekttitel und Links */
.project h3 {
    color: #3498db;
    margin-top: 0;
}

.project a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.project a:hover {
    text-decoration: underline;
}

/* Responsive Anpassungen für Projekte */
@media (max-width: 768px) {
    .project {
        flex-direction: column;
        text-align: center;
    }

    .project-screenshot {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .project-details {
        text-align: center;
    }
}

/* Styling für Contact Icons */
.contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.contact-icons a {
    color: #333;
    font-size: 2em;
    transition: color 0.3s ease;
}

.contact-icons a:hover {
    color: #3498db; /* Farbe für Hover-Effekt */
}