.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;
}

.social {
    padding: 1.5em;
    display: flex;
    justify-content: center;
    gap: 1.2em;
    flex-wrap: wrap;
}

.button-social {
    color: #20253d;
    background: #ececec;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 5px 10px #ccc;
    transition-property: box-shadow, background-color;
    transition-duration: 0.4s;
}

.button-social:hover {
    color: #20253d;
    background-color: #ececec;
    box-shadow: 0px 5px 12px #aaa;
    transition-property: box-shadow, background-color;
    transition-duration: 0.4s;
}

.button-social img {
    width: 50%;
    height: 50%;
}

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

    .about-image {
        width: 60%;
    }

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