:root {
    --green-color: #03C988;
    --dark-blue-color: #00337C;
    --light-blue-color: #1C82AD;
    --btns-gradient: linear-gradient(25deg, rgba(28,130,173,1) 0%, rgba(3,201,136,1) 100%);
    --section-color: #ECF2FC;
    --section-padding: 100px;
    --main-transition: 0.3s;
}

.user{
    position: relative;
}

.user .avatar{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: white;
    color: var(--green-color);
    font-size: 30px;
    cursor: pointer;
}

.user .user-menu{
    position: absolute;
    width: 200px;
    background-color: white;
    border-radius: 15px;
    padding: 10px;
    flex-direction: column;
    gap: 10px;
    right: -10px;
    top: calc(100% + 15px);
    z-index: 6;
    display: none;
}

.user .user-menu::before{
    content: '';
    position: absolute;
    border: solid 8px;
    border-color: transparent transparent white transparent;
    right: 20px;
    bottom: 100%;
}

.user .logout {
    color: #f44336;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: 0;
    width: 100%;
    border: 0;
    font-size: 18px;
}

.user a {
    color: var(--green-color);
}