.user-profile{
    padding: 20px;
    border-radius: 30px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 2em;
}
.user-profile-title{
    display: flex;
    align-items: center;
    h1{
        margin-bottom: 0;
        font-size: 1.5em;
    }
    p{
    margin-top: 0;  
    }
}
.user-profile img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0;
}
#account_badge{
    margin: 0;
    padding: 0;
}
#account_badge svg{
    width: 1.5em;
}
.account_start{
    margin-top: 30px;
    color: gray;
}
.account-menu{
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.account-menu a{
    width: 48%;
}

.account-menu a button{
    width: 100%;
    background-color: #eeeeee;
    font-size: medium;
    padding: 7px 20px;
    border-radius: 10px;
    border: 01px solid black;
}


@media (min-width: 900px) {
    .account-menu{
        display: none;
    }
}