﻿.personProfile
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 30px;
    box-shadow: 5px 5px 15px 5px rgba(100,100,100,.2);
}
.personProfile h2
{
    margin-bottom: 0;
}
    .personProfile .photo
    {
        order: 1;
        margin-left: 15px;
        width: 220px;
        box-sizing: border-box;
    }
    .personProfile .photo img
    {
        border: solid 5px var(--kiraOrange);
        border-radius: 50%;
        box-sizing: border-box;
    }
    .personProfile .info
    {
        width: calc(100% - 265px);
    }
@media (max-width: 800px)
{
    .personProfile .photo
    {
        margin-left: 10px;
        width: 160px;
    }

    .personProfile .info
    {
        width: calc(100% - 195px);
    }
}
@media (max-width: 500px)
{
    .personProfile
    {
        display: block;
    }

    .personProfile .photo
    {
        margin-left: 0;
        width: 100%;
    }

        .personProfile .info
        {
            width: 100%;
        }
}