body {
    background-color: black;
    overflow: auto;
}

p,
input {
    color: #4c90fe;
    /* font-family: VT323, monospace; */
    /* font-family: 'Press Start 2P', monospace; */
    /* font-family: Hack, monospace; */
    font-family: 'Ubuntu Mono', monospace;
    
    /* font-family: 'Ubuntu', sans-serif; */
    /* font-size: 1.5vw; */
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 0;
    min-height: 18px;
    text-wrap: nowrap;
}

input {
    width: 100%;
    background-color: transparent;
    outline: none;
    border: none;
}

p::selection,
input::selection {
    background-color: #4c90fe;
    color: black;
}

#caret {
    width: 16px;
    height: 18px;
    background-color: transparent;
    animation: blink 1s steps(1, start) infinite;
}

@keyframes blink {
    50% {
        background-color: #4c90fe;
    }
}