body
{
    background-color: #000000;
    color: lightgray;
    font-size: 150%;
    font-family: monospace;
    font-weight: 700;
}
#container
{
    margin-left: auto;
    margin-right: auto;
    width: 960px;
}
#password
{
    width: 900px;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    font-size: 300%;
    min-height: 60px;
    background-color: #010101;
    margin-left: auto;
    margin-right: auto;
    /*text-transform: uppercase; -> other way for uppercase */   
}
#gallows
{
    float: left;
    text-align: center;
    width: 50%;
    min-height: 280px;
    background-color: #020202;
}
#alphabet
{
    float: left;
    text-align: center;
    width: 50%;
    min-height:  230px;
    background-color: #030303;
}

.letter
{
    width: 30px;
    height: 30;
    padding: 5px;
    margin: 5px;
    text-align: center;
    border: 3px solid gray;
    float: left;
    cursor: pointer;
    border-radius: 15px;
}

.letter:hover
{
    background-color: #222222;
    color: white;
    border: 3px solid white;
}

.reset
{
    color: green;
    cursor: pointer;
    font-size: 48px;
}

.reset:hover
{
    color: white;
}