body {
    background-color: #000000; 
    color: #33ff33; 
    font-family: 'Courier New', Courier, monospace; 
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
    border: 2px solid #33ff33; 
    padding: 30px;
    background: #000000; 
    border-radius: 0; 
    box-shadow: 0 0 15px #33ff33; 
}

h1 {
    font-size: 32px;
    color: #33ff33; /* Green color for the heading */
    margin-bottom: 20px;
    text-transform: uppercase;
}

.alloneword {
    margin: 20px 0;
}

.alloneword img {
    max-width: 100%;
    cursor: pointer;
    filter: brightness(70%);
    transition: filter 0.3s;
    border: 1px solid #33ff33; /* Add a green border to the image */
}

.alloneword img:hover {
    filter: brightness(100%);
}

form {
    margin-top: 20px;
}

input[type="text"] {
    width: 70%;
    padding: 10px;
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace; /* Monospaced font for input */
    border: 2px solid #33ff33;
    background: #000000; /* Black background for input field */
    color: #33ff33; /* Green text for input */
    border-radius: 0; /* No border-radius for a more retro feel */
    outline: none;
}

input[type="text"]:focus {
    box-shadow: 0 0 5px #33ff33;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Courier New', Courier, monospace;
    background-color: #000000; /* Black background for the button */
    border: 2px solid #33ff33;
    color: #33ff33; /* Green text for button */
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #333333; /* Slightly lighter background on hover */
}

#responseMessage {
    margin-top: 15px;
    font-size: 18px;
    color: #33ff33; /* Green color for the response message */
}
