﻿body {
    background: #000;
    color: #00ff66;
    font-family: 'VT323', monospace;
    font-size: 20px;
    margin: 0;
}

.terminal-body {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

/* blocchi stile terminale */
.terminal-block {
    border-top: 1px solid #00ff66;
    border-bottom: 1px solid #00ff66;
    padding: 15px 0;
    margin: 20px 0;
}

/* titoli */
h1, h2, h3 {
    font-weight: normal;
    text-transform: uppercase;
    margin: 20px 0 10px;
}

/* link */
a {
    color: #00ff66;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }


input, textarea {
    background: #000;
    color: #00ff66;
    border: 1px solid #00ff66;
    font-family: "Courier New", monospace;
    padding: 6px;
    width: 100%;
}

    input:focus {
        outline: none;
    }

.terminal-button {
    background: #000;
    color: #00ff66;
    border: 1px solid #00ff66;
    padding: 8px 16px;
    cursor: pointer;
}

    .terminal-button:hover {
        background: #00ff66;
        color: #000;
    }

.terminal-error {
    color: #ff4444;
}

