body {
    background-color: black;
    color: #84d4ea;
    font-family: 'VT323', monospace; 
    font-size: 24px;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

#console-container {
    width: 100%;
    max-width: 600px;
    height: 80vh;
    overflow-y: auto;
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

#console {
    white-space: pre-wrap;
    overflow-wrap: break-word;
}

.blinking-cursor {
    font-weight: bold;
    font-size: 18px;
    color: #84d4ea;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.vsync-line {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 255, 0, 0.5);
    animation: vsync 0.4s infinite linear;
}

@keyframes vsync {
    0% {
        top: -2px;
    }
    100% {
        top: 100%;
    }
}