.row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    gap: 4em;
    padding: 4em 0;
}

.col {
    width: 100%;
}

.about-heading {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: .25em;
}

.person-info {
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-align: left;
}

.person-pic {
    line-height: 0;
    margin: 0 auto;
    width: 50%;
    min-width: 250px;
    max-width: 300px;
    margin-top: 1.5em;
}

.person-pic img {
    max-width: 100%;
    /* box-shadow: 10px 10px 20px 5px var(--shadowColor); */
}

/*-----HANDLE LARGER SCREEN SIZE-------------------------------------*/
@media screen and (min-width: 875px) {
    .col {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 4em;
    }
    
    .about-heading {
        text-align: left;
    }

    .person-pic {
        margin-top: 0;
    }
}