.top{
    font-family: var(--main_font);
    width:100%;
    height: 10vh;    
    z-index: 150;
    display: flex;
    align-items: center;
}
.user{
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.img{
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 3px solid var(--color_02);
    background-image: url('../images/pp.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 10px;
}

h3{
color: var(--font_color_02);
font-weight: 900;
}

h3 span{
font-weight: 100;
color: var(--font_color_01);
}

.user h4{
font-weight: 100;
color: var(--color_02);
}

/* MOBILE */
@media screen and (max-width:350px){

    /* Top */
    .top{
        height:8vh;
        justify-content: center;
        margin-top: 5px;
   }

   .img{
        width: 40px;
        height: 40px;
        border: 2px solid var(--color_02);
        
   }

   .user{
        margin: 0;
   }
