html, body {
    background-color: #0d0d0d !important;
    background: #0d0d0d !important;
    font-family: 'Roboto Mono', monospace !important;
    height: 100%;
}


#cursor {
    display: inline-block;
    width: 10px;
    animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

