.title-bar {
    background-color: var(--green);
}

.story {
    background-color: var(--pink);
}

.bio {
    display: flex;
    z-index: 1;
    width: 100%;
    max-width: 80em;
    border-radius: 1em;
}

.bio-maja {
    background-color: var(--orange);
}

.bio-ivana {
    background-color: var(--yellow);
}

.bio-image {
    width: 50%;
    object-fit: cover;
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em;
}

.bio-content {
    flex: 1;
    padding: 2em;
}

@media screen and (max-width: 750px) {
    .bio {
        flex-direction: column;
    }

    .bio-image {
        width: 100%;
        height: 25em;
        border-top-right-radius: 1em;
        border-bottom-left-radius: 0;
    }
}