#user {
    position: absolute;
    top: 0;
    right: 5%;
}

#user button {
    display: block;
    background: transparent none;
    color: #fff;
    font: inherit;
    font-weight: bold;
    padding: 0.2rem 0.7rem 0.3rem;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
}

#user button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    margin-left: 0.4em;
    position: relative;
    top: 0.7em;
}

#user button:hover,
#user button:active,
#user.visible button {
    background: #fff;
    color: #2e3356;
}

#user.visible button {
    border-radius: 0.4rem 0.4rem 0 0;
}

#user a {
    display: block;
    text-decoration: none;
    padding: 0.2rem 0.7rem 0.3rem;
}

#user button:hover::after,
#user button:active::after {
    border-top-color: #2e3356;
}

#user h3 {
    float: right;
}

#user p {
    line-height: 2rem;
    padding-right: 2em;
    float: right;
}

#user ul {
    background: #fff;
    color: #2e3356;
    border-radius: 0.4rem 0 0.4rem 0.4rem;
    font-size: 1.2rem;
    white-space: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 3rem;
    right: 0;
}

.js #user ul {
    display: none;
}

.js #user.visible ul {
    display: block;
}
