body {
  background-color: #080808;
}

div#scoreBoard {
  top: 0px;
  position: relative;
  background-color: #333333;
  width: 1000px;
  height: 90px;
  margin: 0 auto;
  border: 1px solid #000000;

}

div#scoreBoard > table {
  border-width: 0px;
  padding: 1px;
  width: 100%
}
div#scoreBoard > table > tbody > tr > td {
  color: #eeeeee;
  font-family: courier, monospace;
  width: 5%;
}

div#mainFrame {
  top: 10px;
  position: relative;
  background-color: #444444;
  width: 1000px;
  margin: 0 auto;
  border: 1px solid #000000;
  height: 500px;
}

div#logFrame {
  position: relative;
  top: 10px;
  background-color: #eeeeee;
  width: 1000px;
  margin: 0 auto;
  border: 1px solid #000000;
  height: 200px;
  overflow: auto;
  display: none;
}

div#player {
  position: absolute;
  background-image: url("player.png");
  width: 25px;
  height: 25px;
  z-index: 100;
}

div.cell {
  position: absolute;
  width: 25px;
  height: 25px;
  z-index: 10;
}

/*
div.wall {
  position: absolute;
  background-image: url("wall.png");
  width: 25px;
  height: 25px;
  z-index: 10;
}

div.exit {
  position: absolute;
  background-image: url("exit.png");
  width: 25px;
  height: 25px;
  z-index: 10;
}

div.tunnel {
  position: absolute;
  background-image: url("tunnel.png");
  width: 25px;
  height: 25px;
  z-index: 10;
}

div.bomb {
  position: absolute;
  background-image: url("bomb.png");
  width: 25px;
  height: 25px;
  z-index: 10;
}

div.shield {
  position: absolute;
  background-image: url("shield.png");
  width: 25px;
  height: 25px;
  z-index: 10;
}
*/

div.modal {
  position: absolute;
  border: solid red 4px;
  background-color: #777777;
  text-align: center;
  font-family: sans-serif;
  font-size: 16;
  color: #000000;
  width: 400px;
  height: 200px;
  z-index: 200;
  left: 300px;
  top: 100px;
}

div.modal button {
  border: solid red 2px;
  border-radius: 5px;
  background-color: #555555;
  font-family: sans-serif;
  font-size: 24px;
  color: red;
  padding-top: 4px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 4px;
}
