.about-content, .about-content * {
    font-size: 20px !important;
    line-height: 34px !important;
}

.about-image {
    float: right;
    width: 400px;
    object-fit: cover;
    margin: 25px 0 30px 50px;
    aspect-ratio: 5 / 7;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border-radius: 8px;
    transition: .3s ease box-shadow;
}

.about-image:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

@media screen and (max-width: 1200px) {
    .about-content {
        font-size: 18px;
        line-height: 28px;
    }
}

@media screen and (max-width: 950px) {
    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        width: 100%;
        max-width: 400px;
        float: none;
        margin: 20px 0 20px 0;
    }
}