body {

    background-color: #F5F5DC;
}



.profile-img {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    /* Größere Breite für den Kreis */
    height: 200px;
    /* Größere Höhe für den Kreis */
    border-radius: 50%;
    border: 2px solid #007bff;
    object-fit: cover;
    /* Bild wird in den Kreis angepasst */
}

@media(max-width: 768px) {
    .profile-img {
        position: static;
        margin-bottom: 20px;
    }
}

h1 {
    color: black;
}

h2 {
    color: #333;
}

.section {
    margin-bottom: 40px;
}

.section h3 {
    color: #666;
}

.section p {
    margin-bottom: 5px;
}

#link {
    color: black;
    /* Farbe für ungeklickte Links */
}

.slider-pager {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.slider-pager li {
    background-color: #333;
    color: #FFF;
    padding: 1em;
    margin: 0 0 1em 0;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
}

#logo {
    margin: 0;
    padding-left: 0;
}

.collage-img {
    object-fit: cover;
    height: 250px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}
.collage-img:hover {
    transform: scale(1.1);
}