#sticky-links {
    position: fixed;
    top: 0;
    right: 0;
    background: #23475a;
    padding: 4px 10px;
    z-index: 1000;
    display: flex;
    flex-flow: row wrap;
    border-radius: 0 0 0 5px;
    font-size: 12px;
    color: white;
    gap: 6px;
    font-weight: 300;
}

#sticky-links > a {
    color: white;
    font-weight: bold;
}

#sticky-links > a:hover,
#sticky-links > a:focus-visible {
    text-decoration: underline;
}