debugmenu {
    position: absolute;
    width: 10%;
    min-height: 2%;
    max-height: 36%;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid red;
    background-color: black;
    z-index: 100;
}

debugmenuentry {
    display: block;
    max-height: 10%;
    width: 100%;
    font-size: 0.6vw;
    font-family: 'Consolas', monospace;
    color: white;
    border: 1px solid white;
    user-select: none;
    overflow: hidden;
    padding-left: 2%;
}

debugmenuentry:hover {
    color: green;
}

debugmenuentry.selected {
    animation-name: debugmenuentry-selected;
    animation-duration: 60ms;
    animation-iteration-count: 5;
}

@keyframes debugmenuentry-selected {
    0% { background-color: black; }
    50% { background-color: white; }
    100% { background-color: black; }
}