.profile_picture{
    border-radius: 100%;
    border: 5px solid white;
    transition:all;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}

.profile_picture:hover{
    border: 5px solid #BBB;
    transform: scale(1.05);
}

.name{
    line-height: 30px;
    transition: all 0.2s;
    color:white;
}

.name:hover{
    line-height: 30px;
    transition: all 0.2s;
    transform: scale(1.05);
}


.tab {
    overflow: hidden;
    color:white;
    display: flex;
    justify-content: center;
    align-items: center;
}
   
.tab button {
    color:white;
    background-color: inherit;
    float: left;
    border: none;
    border-radius: 20px 20px 0px 0px;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: all 0.3s;
}
   
.tab button:hover {
    font-weight: bolder;
    border-bottom: 2px solid #BBB;
}
   
.tab button.active {
    font-weight: bolder;
    background-color: #444;
    border-bottom: 2px solid #BBB;
}
   
.tabcontent {
    font-size: 15px;
    color:white;
    display: none;
    padding: 6px 12px;
}
