* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    background: #370f29;
    font-family: 'Courier';
    font-size: 16px;
}

.middle {
    display: flex;
    height: 100vh;
    width: 100vw;
    gap: 4px;
    padding: 4px;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid #fefefe;
    overflow: hidden;
}

.arrow {
    padding: 12px 15px;
    color: #fefefe;
    font-family: 'Fira Code', 'JetBrains Mono', 'Consolas', monospace;
    font-size: 80px;
    font-weight: 300;
    text-align: center;
    line-height: 1;
}

.left {
    margin-right: 0;
}

.right {
    margin-left: 0;
}

.console {
    flex: 1;
    overflow-y: auto;
    padding: 10px 15px;
}

.bottom {
    padding: 8px 15px;
    display: flex;
    align-items: center;
}

.label {
    color: #fefefe;
    margin-right: 8px;
}

#inputleft, #inputright {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fefefe;
    font-family: 'Courier';
    font-size: 16px;
    caret-color: #fefefe;
}

.white {
    color: #fefefe;
}

.blue {
    color: #81bbd5;
}

.line {
    margin-bottom: 4px;
}

.margin {
    margin-left: 40px;
    margin-bottom: 4px;
}
