body {
    background-color: black;
    color: white;
    font-family: "VT323", monospace;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal {
    display: flex;
    align-items: center;
}

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

@keyframes blink {
    from, to { opacity: 0; }
    50% {opacity: 1;}
}