html,
body {
    background: #000000;
    font-family: 'Courier New', Courier, monospace;
    min-width: 150px;
    min-height: 150px;
    padding: 0px;
    margin: 0px;
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFFFFF;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    box-sizing: border-box;
    padding: 0.25rem;
    position: fixed;
    overflow: auto;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.container * {
    box-sizing: border-box;
    color: #fafafa;
    font-size: 1rem;
}

.group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.title {
    margin: 0rem;
    opacity: 0.5;
}

.links {
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.link-item {
    opacity: 0.75;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.link-item:hover {
    opacity: 1;
}

.link-item:hover * {
    cursor: pointer;
    opacity: 1;
}

.link-label {
    width: 50%;
    display: block;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link-href {
    width: 50%;
    display: block;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0.5;
}