/* Stelt de zwarte achtergrond in en zorgt voor de juiste lettertypen */
body {
    background-color: #000000;
    color: #00ff66; /* Het typische felle 'terminal' groen */
    font-family: 'Courier New', Courier, monospace;
    margin: 40px;
    line-height: 1.5;
}

/* Voor koppen (H1, H2, etc.) kun je eventueel dezelfde of een net iets andere tint gebruiken */
h1, h2, h3, h4, h5, h6 {
    color: #00ff66;
    font-family: 'Courier New', Courier, monospace;
}

/* Links die opvallen maar in de sfeer blijven */
a {
    color: #00cc55;
    text-decoration: underline;
}

a:hover {
    color: #ffffff;
    background-color: #00ff66;
    text-decoration: none;
}

/* Belangrijk voor ASCII-art en codeblokken zodat spaties intact blijven */
pre, code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #050505;
    border: 1px solid #003311;
    padding: 10px;
    overflow-x: auto;
}
