@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

#fireCanvas{
  margin: 10px;
}

table{
  border: 1px solid black;
  border-collapse: collapse;
}
td{
  width: 32px;
  height: 32px;
  border: 1px solid black;
  text-align: center;
  font-family: monospace;
  font-size: 10px;
  font-weight: bold;
  position: relative;
}

.pixel-index{
  position: absolute;
  font-size: 7px;
  display: inline-block;
  top: 1px;
  right: 1px;
  color: #999;
}

td.pixel{
  width: 4px;
  height: 4px;
  border: 0;
}

body {
  background-color: #63431c;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-family: 'Roboto', sans-serif;
}

.center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.row{
  margin-bottom: 10px;
}

button{
  border-radius: 2px;
  border-style: none;
  background-color: white;
  font-family: 'Roboto', sans-serif;
}
button:active{
  background-color: orange;
}

button:focus{
  outline: none;
}