* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Courier Prime";
    font-size: 20px;
    line-height: 100%;
    color: #FFFFFF;
    background-color: #000000;
}

#dialogue-box {
    overflow-y: scroll;
    margin: 0 5vw 0 auto;
    padding: 12.5vh 2em 25vh 2em;
    width: 30vw;
    height: 100vh;
    border-right: 1px solid #FFFFFF;
    border-left: 1px solid #FFFFFF;
}

button {
    display: block;
    width: 100%;
    padding: 1em;
    font-family: "Courier Prime";
    font-size: 20px;
    text-transform: uppercase;
    line-height: 100%;
    text-align: left;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    background-color: #000000;
}

p, button {
    margin: 1em 0;
}

#dialogue-box p {
    cursor: default;
}

li {
    margin: 0;
}

.select-active {
    cursor: pointer;
}

.select-active:hover {
    color: #FFFFFF;
}

.select-inactive {
    cursor: default;
}

.o-brian {
    color: #80FF00;
}

.hart {
    color: #FFBF00;
}

.aida {
    color: #00FFFF;
}

.inactive {
    color: #808080;
    border: 1px solid #808080;
}

.active {
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.active:hover {
    color: #000000;
    background-color: #FFFFFF;
    cursor: pointer;
}

.unselected {
    color: #808080;
}

.selected {
    color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 0.25em;
}

::-webkit-scrollbar-track {
  background: #000000;
}

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

.action .text {
    font-style: italic;
}

.name {
    text-transform: uppercase;
}

.hidden {
    visibility: hidden;
}

.scroller * {
    overflow-anchor: none;
}

#anchor {
    overflow-anchor: auto;
}