.startseite {
    display: flex;
    justify-content: center;
    flex-direction: column; /* Align items vertically */
    align-items: center; /* Center align items horizontally */
}

.profile-container {
    display: flex;
    flex-direction: column; /* Arrange profiles vertically */
    gap: 20px; /* Space between profile blocks */
    width: 100%;
    max-width: 1000px; /* Adjust width as needed */
}

.profile-1, .profile-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px;
    border-radius: 5px;
    width: 100%;
    max-width: 1000px; /* Adjust width as needed */
}

.profile-1 .content, .profile-2 .content {
    flex: 1;
    padding-right: 20px; /* Space between text and image */
}

.profile-1 .img, .profile-2 .img {
    flex-shrink: 0; /* Prevent image from shrinking */
}
