@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body, html {
    background-color: #000;
    color: #ff0000; /* Red */
    font-family: 'VT323', monospace;
    margin: 0;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
}

#terminal {
    font-size: 1.5em;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    word-wrap: break-word;
}

.prompt {
    color: #00ff00; /* Green */
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to {
        color: transparent;
    }
    50% {
        color: #ff0000;
    }
}

#input-line {
    display: flex;
}

.output {
    color: #ff0000; /* Red */
    white-space: pre-wrap;
}

.command-line {
    display: flex;
}

#keyboard-input {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    width: 0;
    height: 0;
    border: none;
    padding: 0;
    margin: 0;
}
