body {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #292929;
    font-family: 'Courier New', Courier, monospace;
}

a {
    color: #d700ff; /* Link color */
}

.cursor {
    color: #fff; /* Cursor color */
    animation: blink 1s infinite;
}

.disabled {
    color: #1e1e1e;
    cursor: not-allowed;
}
