div.exterm.exterm-focused {
    border-style: solid;
    border-color: yellow;
    border-width: 2px;
}

div.exterm.exterm-blurred {
    border-style: solid;
    border-color: black;
    border-width: 2px;
}

div#exterm-terminal {
    background-color: black;
    color: white;
    font-family: courier-new, courier, monospace;
    font-size: 15px;
    width: 100ch;
    height: 500px;
    position: relative;
    overflow: auto;
}

div#exterm-container {
    height: auto;
    position: absolute;
    bottom: 0px;
}

div#exterm-buffer {
    position: absolute;
    bottom: 480px;
}

div#exterm-console {
    position: absolute;
    bottom: 0px;
}

div.exterm.exterm-blurred div.exterm-cursor.exterm-cursor-active {
    border-color: white;
    border-width: 1px;
    border-style: solid;
}

div.exterm.exterm-focused div.exterm-cursor.exterm-cursor-active {
    animation: blinker 1s linear infinite;
}

div.exterm-row {
    display: flex;
}

div.exterm-cell {
    flex: 1;
    width: 1ch;
    height: 20px;
}

@keyframes blinker {
    50% {
        background-color: white;
    }
}