body {
    background: #111;
    color: #EEE;
    font-size: 10pt;
    font-family: sans-serif;
    font-weight: bold;
    margin: 0px;
    padding: 0px;
}
#container {
    background: #EEE;
    color: #111;
    box-shadow: 3px 3px 5px rgba(255, 255, 255, 0.26);
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    position: relative;
    right: 0;
    width: 215px;
    height: 352px;
    padding: 3px;
    background-color: #ccc;
    margin: 0 auto;
    overflow: hidden;
    font-size: 12px;
}
#game {
    position: absolute;
    border-radius: 4px;
    height: 300px;
    top: 40px;
    width:210px;
    background-color: #ccc;
    margin-top: 10px;
}
#history {
    margin: 0 auto;
    border: 1px solid #ccc;
    padding: 10px;
}
#newgame.first {
    position: absolute;
    padding: 60px 0;
    width: 210px;
    text-align: center;
    cursor: pointer;
    display: block;
}
#newgame.first span {
    font-size: 12px;
    font-weight: normal;
    color: #555;
}
#newgame.again {
    position: absolute;
    color: #fff;
    background-color: rgba(214, 42, 42, 0.92);
    top: 139px;
    width: 165px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 15px;
    display: none;
    left: 25px;
}
#points {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 37px;
    background-color: #eee;
    padding: 0;
    width: 40px;
    text-align: center;
}
#timer {
    position: absolute;
    top: 0px;
    left: 173px;
    line-height: 37px;
    background-color: #eee;
    padding: 0;
    width: 40px;
    text-align: center;
}
#wordsbar {
    position: absolute;
    cursor: pointer;
    top: 0px;
    left: 40px;
    background-color: rgba(162, 6, 6, 0.84);
    color: #FFF;
    font-weight: bold;
    display: block;
    width: 133px;
    height: 37px;
    line-height: 30px;
    padding: 0;
    text-align: center;
}
#wordsbar.valid {
    background-color: rgba(17, 141, 0, 0.84);
}
.block {
    border-radius: 5px;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
    display: inline-block;
    position: absolute;
    cursor: pointer;
    width: 28px;
    line-height: 28px;
    color: #CCC;
    background-color: rgba(12, 96, 181, 0.9);
    text-align: center;
}
.block.selected {
    background-color: rgb(165, 61, 30);
}