body {
    background-image: url('/images/win-bg.svg');
    font-family: "Consolas", "Monaco", "Menlo", "Courier New", monospace;
    background-size: cover; /* Adjust to fit the screen */
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; /* Full height */
    margin: 0;
}
#console {
    font-size: 24px;
    color: limegreen;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid limegreen; /* Cursor */
    display: inline-block;
}
@keyframes blink {
    50% { border-color: transparent; }
}