.about-frame {
    display: flex;
    align-items: flex-start;
    gap: 2em;
    padding-top: 2em;
}

.about-image {
    width: 30%;
    flex-shrink: 0;
    border-radius: 10px;
    box-shadow: 0px 5px 20px #ccc;
    display: block;

    @supports (corner-shape: squircle) {
        /*border-radius: 20px;*/
        corner-shape: squircle;
    }
}

.about-content {
    width: 65%;
}

.about-text {
    line-height: 1.5em;
    text-align: left;
}


@media (max-width: 500px) {
    .about-frame {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        width: 60%;
    }

    .about-content {
        width: 100%;
    }
}
