body {
    background-color: black;
    color: #00FF00;
    font-family: "Courier New", monospace;
    font-size: 16px;
    line-height: 1.5;
    padding: 20px;
    margin: 0;
}

a {
    color: #00FF00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.cursor {
    display: inline-block;
    width: 10px;
    background-color: #00FF00;
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% {
        background-color: black;
    }
}

input, textarea {
    background-color: black;
    color: #00FF00;
    border: none;
    font-family: "Courier New", monospace;
    font-size: 16px;
    outline: none;
    width: 100%;
}
