.benutzerstart {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
}

.benutzer {
    display: flex;
    justify-content: center;
    gap: 1em 2em;
    flex-wrap: wrap;
    width: 100%;
}

.benutzerspalte {
    width: 400px;
    height: 400px;
    box-shadow: 10px 20px 15px silver;
    padding: 10px;
    margin-bottom: 10px;
    /* background: aquamarine; */
	background-color: #e5eff7;
    border: 2px solid black;
    perspective: 1000px;
}

.flip-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.flip-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* oder 'cover' je nach Bedarf */
    display: block;
}

.flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1.0s;
}

.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.front {
    z-index: 2;
    transform: rotateY(0deg);
}

.back {
    transform: rotateY(180deg);
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.benutzerspalte:hover .flipper {
    transform: rotateY(180deg);
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
}