main {
    background: linear-gradient(to top right, var(--color-primary-hover) 25%, var(--color-primary-light) 85%);
    padding: 2rem 2rem;
    color: #ccc;
}

main br,
.hero-about-subtitle {
    margin: 1rem 0;
}

.hero-about-main {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hero-about-main .col {
    width: 50%;
    height: 250px;
}

.hero-about-main .col:last-child {
    display: flex;
    justify-content: flex-end;
}

.blob {
    width: 400px !important;
    height: 300px !important;
    overflow: hidden;
    border-radius: 55% 45% 60% 40% / 65% 55% 45% 35%;
    animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
    0% {
        border-radius: 55% 45% 60% 40% / 65% 55% 45% 35%;

    }
    50% {
        border-radius: 50% 60% 40% 60% / 60% 40% 50% 50%;
    }
    100% {
        border-radius: 55% 45% 60% 40% / 65% 55% 45% 35%;

    }
}


/* Image inside blob */
.blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 820px) {
.hero-about-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    gap: 2rem;
}

.hero-about-main .col {
    width: 100%;
    height: auto;
}

.hero-about-main .col h1, .hero-about-main .col p {
    text-align: center;
}

}