.blob-container-3ee09cba {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.blob-wrapper-3ee09cba {
    position: relative;
    display: block;
    max-width: 100%;
}

.blob-inner-3ee09cba {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphing-blob-anim-3ee09cba 8s ease-in-out infinite;
    box-sizing: border-box;
}

.blob-inner-3ee09cba img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.blob-wrapper-3ee09cba:hover .blob-inner-3ee09cba img {
    transform: scale(1.15);
}

@keyframes morphing-blob-anim-3ee09cba {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 30% / 50% 60% 30% 70%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}
