.about-text-container, .about-img{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    text-align: justify;
}

.about-img img{
    border-radius: 6px;
}

.mobile-img-about {
    display: none;
}

.desktop-img-about {
    display: block;
}

.bio-container {
    padding: 20px;
    border-radius: 6px;
    background-color: #f5f5f5;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    max-width: 300px;
    margin: 20px auto;
}

.bio-icon img {
    border-radius: 50%;
}




@media screen and (max-width: 575px){

    .mobile-img-about {
        display: block;
    }

    .desktop-img-about {
        display: none;
    }

    .about-img img {
        margin-bottom: 30px;
    }

}