.usermenuButton{
    height:40px;
    display:inline-block;
    box-sizing: border-box;
    cursor:pointer;
}

.usermenuButton .profileImage{
    width:30px;
    height:30px;
    box-sizing: border-box;
    margin:5px;
    border-radius:15px;
    background-color:#0001;
    background-position: center;
    background-size: cover;
    background-repeat:no-repeat;
    transition-property: transform;
    transition-duration: 0.1s;
    transform:scale(1);
}

.usermenuButton:hover .profileImage{
    transform:scale(1.1);
}

.usermenu{
    width:250px;
    border:1px solid #eee;
    border-radius:15px;
    background-color:#fefefeee;
    box-shadow: 3px 3px 3px #0004;
    position:absolute;
    z-index:20;
    top:0;
    left:0;
    text-align: center;
    padding-bottom: 20px;
}

.usermenu.mobile{
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
}

.usermenu .profileImage{
    width:80px;
    height:80px;
    background-color:#0001;
    background-position: center;
    background-size: cover;
    background-repeat:no-repeat;

    border-radius:40px;
    display:inline-block;
    margin:20px 0;
    margin-bottom:5px;
}

.usermenu .button{
    width:80%;
    height:40px;
    line-height:40px;
    border-radius:20px;
    background-color:#fff9;
    border: 1px solid #0002;
    transition-property: border, color, transform;
    transition-duration: 0.2s;
    box-sizing: border-box;
    display:inline-block;
    color:#222;
    font-size:19px;
    font-family:sans-serif;
    text-decoration: none;
    cursor:pointer;
    margin:5px 0;
    transform:scale(1);
}

.usermenu .button:hover{
    color:#257;
    border:1px solid #0595;
    transform:scale(0.95);
}

.usermenu.mobile .button{
    transform:scale(1);
    color:#222;
    border:1px solid #0002;
}

.usermenu .username{
    width:90%;
    height:40px;
    line-height:40px;
    font-size:19px;
    color:#222;
    font-family:sans-serif;
    display:inline-block;
}