body {
    background-color: #0a0808;
    background-image: url("headhead.png");   /* замените на имя вашего файла */
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    
    color: #EFE4B0;                       /* ← ваш бежевый */
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(10, 8, 8, 0.5);
    border: 2px solid #00A000;            /* ← ваш зелёный для рамок */
    padding: 25px;
}

h1 {
    color: #EFE4B0;                       /* бежевый */
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    color: #EFE4B0;                       /* бежевый */
    font-size: 1.2em;
    border-bottom: 1px dashed #00A000;    /* зелёная линия под заголовками */
    display: inline-block;
}

a {
    color: #EFE4B0;                       /* бежевые ссылки */
    text-decoration: none;
    background-color: transparent;
    transition: all 0.1s linear;
}

a:hover {
    color: #00A000;                       /* зелёные при наведении */
    background-color: transparent;
    text-decoration: underline;
}

nav a {
    margin-right: 20px;
}

hr {
    border-color: #00A000;                /* зелёная линия-разделитель */
}

.button-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

textarea {
    background-color: #0a0808;
    color: #EFE4B0;
    border: 1px solid #00A000;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 8px;
    resize: vertical;                /* менять размер только по вертикали */
}

textarea:focus {
    outline: none;
    border-color: #EFE4B0;
    box-shadow: 0 0 3px #00A000;
}

footer {
    margin-top: 40px;
    border-top: 1px solid #00A000;        /* зелёная линия */
    padding-top: 20px;
    font-size: 0.8em;
    color: #a0a090;
    text-align: center;
}