@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca&family=Poppins:wght@400;600&display=swap');

*{
    font-family: Poppins, sans-serif;
    margin: 0px;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

p {
    line-height: .6;
    font-weight: 400;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.username-container {
    background-color: #242526;
    width: 100%;
    display: flex;
    border-radius: 5px;
    padding: 10px;
    justify-content: space-between;
}

.profile-container{
    display: flex;
    gap: 0.5em;
    justify-content: space-between;
    align-items: center;
}

.profile-description{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-img {
    border-radius: 50%;
    width: 70px;
    height: 70px;
    overflow: hidden;
}

.profile-img img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.user-title{
    color: white;
    font-weight: inherit;
    font-size: 1.3em;
}

.username {
    color: #B0B3B8;
}

.menu-bar{
    display: flex;
    align-items: center;
}

.menu-bar i{
    font-size: 25px;
    color: white;
}

.menu-bar i:hover{
    cursor: pointer;
}
        
.x19dipnz {
    color: #0866FF;
}