/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.terminal {
    font-size: 2rem;
    text-align: center;
}

.cursor {
    animation: blink 1s infinite step-end;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.link {
    color: #00ff00;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.no {
    color: #ff0000;
}
