.wrapper {
    max-width: 900px;
    margin: 5px auto;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px; /* Abstand zwischen den Blöcken */
}

.text {
    flex: 1;
}

.bild {
    flex-shrink: 0;
    text-align: right;
}

.hover-bild {
    width: 70px;
    transition: transform 0.3s ease;
    cursor: pointer;
    transform-origin: right center;
}

.hover-bild:hover {
    transform: scale(4);
}

