
.bio_portal_title{
    text-align: center;

}
/* .bio_row_wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
    align-items: center;
} */

.bio_row_wrapper {
    display: grid;
    grid-template-columns: 1fr 75px 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
    text-align: center;
}

.bio_portal_header {
   text-align: center;
}

.bio_portal_links{
    transition: all 0.2s ease-in-out;
}
.bio_portal_links:hover {
    transform: scale(1.05);
}

.bio_portal_img {
    border-radius: 25px;
    text-align: center;
    margin: auto;
}
.bio_downArrow_img{
    grid-area: arrow;
    margin: auto;
    margin-top: 20px;
    max-height: 100px;
}
.bio_downArrow{
    display: grid;
    grid-template-columns: 1fr 75px 1fr;
    grid-template-areas: 
    ". . arrow";
}

.bio_portal_more_info {
    text-align: center;
}