body {
	background-color: #000;
	font-family: arial,sans-serif;
	margin: 0;
	padding: 0;
}

#h {
	display: table;
	margin: 1em auto 0 auto;
}
#h div {
	display: inline-block;
}
#sc {
	color: #bbb;
	text-align: center;
	vertical-align: top;
	line-height: 1em;
}
#sc.win {color:#6f6}
#sc.lose {color:#f66}
#h .i {
	background-color: #444;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60%;
	border-radius: 20%;
	cursor: pointer;
}
#h #rb {
	background-image: url("../../img/home-blk.svg");
}

#board {
	background-color: #5e4f2c;
	border-radius: 10px;
	display: table;
	margin: 0 auto;
	position: relative;
}
.tile {
	background-color: #f0ca71;
	border-radius: 10px;
	border-width: 5px;
	border-color: #fde09c  #c6a456 #c6a456 #fde09c;
	border-style: solid;
	cursor: pointer;
	display: inline-block;
	font-family: arial,sans-serif;
	font-weight: bold;
	position: absolute;
	text-align: center;
}
* {
  -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; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}
.ad {
	margin-top: 2em;
	text-align: center;
}