.friend_col {
    column-count: auto;
    column-width: 12rem;
}
.columns {
    display: flex;
    border: 2px solid #ddd;
    border-radius: 25px;
    margin-bottom:10px;
}
.avatar {
    display: block;
    border-radius: 25px;
}
.avatar_holder {
    min-height: 50px;
    height: 50px;
    min-width: 50px;
    width: 50px;
    border-radius: 25px;
    transition: All 0.7s ease-in-out;
    -webkit-transition: All 0.7s ease-in-out;
    -moz-transition: All 0.7s ease-in-out;
    -o-transition: All 0.7s ease-in-out;
}
.avatar_holder:hover {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
}
.profile_holder {
    display: inline;
    height: 50px;
    /* font-family:'Console'; */
    margin: auto;
    text-align: center;
}
.name{
    font-size:15px;
    height: 18px;
}
.intro{
    font-size:12px;
    max-height: 29px;
}
#blogs{
    margin-top: 0;
}