/* Denna fil tvingar fram färgerna */
html, body {
    background-color: #000000 !important;
    color: #00FF00 !important;
    margin: 0;
    padding: 20px;
    height: 100%;
}

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

.cursor {
    display: inline-block;
    width: 10px;
    height: 1.1em;
    background-color: #00FF00;
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s step-start infinite;
}

.terminal {
    font-family: 'Courier New', Courier, monospace;
    white-space: pre;
    display: block;
}

a {
    color: #00FF00 !important;
    text-decoration: underline;
}
