.about-container {
    width: 100%;
    display: block;
    line-height: 1.6;
}

.about-text p{
    margin-bottom: 1rem;
}

.about-profile {
    float: right;
    width: 250px;
    margin-left: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 5px auto;
}

.profile-name {
    line-height: 1.2;
}

.profile-name .first-name {
    font-weight: 600;
    font-size: 1.8rem;
    display: block;
}

.profile-name .last-name {
    font-size: 1.7rem;
    opacity: 0.75;
    display: block;
}

.about-container::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 600px) {
    .about-profile {
        float: none;
        margin: 0 auto 20px auto;
        width: 100%;
    }
}
