body{
  background-image: url('/assets/orb bg.png');
  font-family: DK Cool Crayon;
  text-shadow: 1.5px 0 #000, -1.5px 0 #000, 0 1.5px #000, 0 -1.5px #000, /* border width */
             1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000; /*border padding*/
  color: white;
}


@font-face {
	font-family: "DK Cool Crayon";
	src: url("/assets/DkCoolCrayon.ttf") format("truetype"),
	url("/assets/DkCoolCrayon.ttf") format("truetype");
}

h1{
  text-align: center;
}
.border{
  text-align:center;
}
.container{
  display: inline-block;
  margin: auto;
}
.column-container{
  height: 5em;
  margin: 0 0 0 5em;
}
.column{
  width: 2em;
  float: left;
  border: 1px solid #ddd;
  border-width: 0 2px 0 0;
  height: inherit;  
}
.row-container{
  float: left;
  width: 5em;
}

.row-container{
  float: left;
  width: 5em;
}
.row{
  width: 100%;
  text-align: justify;
  height: 1em;
  border: 1px solid #ddd;
  border-width: 0 0 1px 0;
  display: table;
 }
.row div{
  display: table-cell;
  vertical-align: middle;  
}
.column div{
  display: block;
  margin: 2em 0 0 0;
}
.row div, .column div{
  height: 0.8em;
  text-align: center;
  font-size: 0.5em;
  line-height: 0.8em;  
}

*{
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}


.grid{
  width: 16em;
  min-height: 1px;
  line-height: 0;
}

button{
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: 1em;
  margin: 0;
  padding: 0;
  color: #999;
  border-radius: 3px;
  border: 2px outset rgba(0, 0, 0, 0.5);
}
button:active{
  border-style: inset;
}
button.selected{
  background: #888 !important;
}
.instructions{
  float: left;
  text-align: left;
}
.instructions div{
  overflow: hidden;
  max-width: 30em;
  width: 0;
  white-space: nowrap;
  -webkit-transition:width 0.2s;
    transition:width 0.2s;
}
.instructions .open{
  width: 30em;
  white-space: normal;
}
.absolute{
  position: absolute;
}
.black{
  background-color: #000;
}