html {
    font-family: 'Menlo', monospace;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    hyphens: auto;
}

h1 {
    background-color: rgb(0, 0, 0); 
    text-align: left;
    font-size: larger;
    font-weight: 800;
}

img {
    width: 100%;
}

h2 {
    background-color: rgb(0, 0, 0); 
    font-size: medium;
    font-weight: 800;
}

output {
    color: rgb(255, 255, 255);
}

a:link {
    color: rgb(255, 255, 255);
}

a:visited {color: rgb(255, 255, 255);}

a:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(255, 0, 225)
}

#inputarea {
    line-height: 1.4;
}

input.boxes {
    background-color: rgb(0, 0, 0);
    color: white;
    font-family: 'Menlo', monospace;
    font-size: 30px; padding: 10px 10px; 
    text-align: center;
    font-weight: 300;
    text-transform:uppercase;
    width: 1em;
    height: 1em;
    border-radius: 0px;
    margin-right: -7px;
}

#submit {
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 5px; cursor: pointer;
    position: relative;
    font-family: 'Menlo', monospace;
    border: 2px solid;
    
}

#submit:hover {
    background-color: white;
    color: rgb(255, 0, 225)
}