#user {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: calc(100% - 40px);
    max-width: 1000px;
    height: 40px;
    padding: 0;
    margin: 0 auto 0px auto;
    z-index: 900;
}

#user > a {
    display: flex;
    background-color: var(--sky-100);
    height: 100%;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border-radius: 0px 0px 5px 20px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.25);
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--zinc-900);
    text-decoration: none;
}

#user > a:hover {
    background-color: var(--sky-200);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.75), 0 0 3px rgba(0, 0, 0, 0.5);
}
