body {
    font-family: 'Questrial', sans-serif;
    font-weight: bolder;
    font-size: 40px;
    
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; 
}

#board {
    border: 1px solid #272727;
    border-radius:2px;
    width:408px;
    height:408px;
    background: rgb(27,27,27);
    background: -moz-linear-gradient(-45deg, rgba(27,27,27,1) 0%, rgba(234,234,234,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(27,27,27,1) 0%,rgba(234,234,234,1) 100%);
    background: linear-gradient(135deg, rgba(27,27,27,1) 0%,rgba(234,234,234,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1b1b1b', endColorstr='#eaeaea',GradientType=1 );
    border-radius:5px;
}

#pause {
    position: absolute;
    background-image: url('pause.png');
    width:408px;
    height:408px;
}


#board div div {
    font-family: Arial, Helvetica, sans-serif; 
    float:left;
    height:50px;
    width:50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    background-color: #cacaca;
    border-radius:2px;
    color: white;
    color: #5a5c40;
    opacity:.7;
    z-index: 3;
}

#board div div img {
    height:32px;
    width:32px;
    text-align: center;
    line-height: 50px;
    vertical-align: middle;
}

#marked img {
    height:32px;
    width:32px;
    text-align: center;
    line-height: 50px;
    vertical-align: middle;
}

#board div div:hover,
#board div div img:hover {
    background-color: rgb(245, 255, 188);
}

button {
    border-radius: 10px;
    border: 2px solid rgb(0, 195, 255);
    padding: 5px;
    font-size:18px;
    color: white;
    cursor: pointer;
    font-weight: bolder;
    width:30%;
    background: rgb(96,108,136);
    background: -moz-linear-gradient(-45deg, rgba(96,108,136,1) 0%, rgba(63,76,107,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(96,108,136,1) 0%,rgba(63,76,107,1) 100%);
    background: linear-gradient(135deg, rgba(96,108,136,1) 0%,rgba(63,76,107,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#606c88', endColorstr='#3f4c6b',GradientType=1 );
}

button:hover {
    color: yellow;
}

#message {
    width: 300px;
    position: absolute;
    border-radius: 25px;
    border: 8px double rgb(134, 134, 134);
    background-color: #270029;
    opacity: .4;
    margin: 0;
    padding: 0;
    background: rgb(97,99,107);
    background: -moz-linear-gradient(top, rgba(97,99,107,1) 0%, rgba(89,94,102,1) 36%, rgba(40,52,59,1) 100%);
    background: -webkit-linear-gradient(top, rgba(97,99,107,1) 0%,rgba(89,94,102,1) 36%,rgba(40,52,59,1) 100%);
    background: linear-gradient(to bottom, rgba(97,99,107,1) 0%,rgba(89,94,102,1) 36%,rgba(40,52,59,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#61636b', endColorstr='#28343b',GradientType=0 );
}

#content {
    font-family: 'Questrial', sans-serif;
    font-size: 15px;
    font-weight: bolder;
    color:white;
    text-align: center;
    margin:0;
    padding:10px;
}

#content .yellow {
    color: yellow;
}

#content .big {
    font-size:25px;
}

#content .med {
    font-size:15px;
}

#content .small {
    font-size:12px;
}

.rules {
    color: white;
    text-align: left;
    font-size: 15px;
    margin:0px;
    padding-left:30px;
}

#timer {
    font-size: 25px;
    width:50%;
    float: left;
    margin:0px;
    padding-left:0px;
}

#marked {
    font-size: 25px;
    width:50%;
    float: right;
    margin:0px;
    padding-left:0px;
}

.header {
    margin-bottom:8px;
    width:408px;
    text-align: center;
}

.status {
    margin-bottom:8px;
    width:408px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: middle;
    color: #555555;
    background: #d1d1d1;
    border: 1px solid #272727;
    border-radius:5px;
    background: #f2f5f6;
    background: -moz-linear-gradient(top, #f2f5f6 0%, #e3eaed 37%, #c1c1c1 100%);
    background: -webkit-linear-gradient(top, #f2f5f6 0%,#e3eaed 37%,#c1c1c1 100%);
    background: linear-gradient(to bottom, #f2f5f6 0%,#e3eaed 37%,#c1c1c1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f5f6', endColorstr='#c1c1c1',GradientType=0 );
}

.status:hover {
    background: #fceabb;
    background: -moz-linear-gradient(top, #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%);
    background: -webkit-linear-gradient(top, #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%);
    background: linear-gradient(to bottom, #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fceabb', endColorstr='#fbdf93',GradientType=0 );
    cursor: pointer;
}

li {
    margin-bottom: 3px;
}
