@font-face {
    font-family: DOS;
    src: url('./fonts/perfect_dos_vga_437_win.ttf');
}

@font-face {
    font-family: IBM_VGA8;
    src: url('./fonts/ibm_vga8.woff2');
}

body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #000000;
    color: #00FF00;
    font-family: DOS, IBM_VGA8, monospace;
    font-size: 22px;
}

#terminal {
    padding: 15px;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
    cursor: text;
}

#output p {
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.2;
}

.input-area {
    display: flex;
    align-items: center;
}

.prompt {
    margin-right: 8px;
}

#input-line {
    outline: none;
    caret-color: transparent;
}

.input-area::after {
    content: '█';
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}
