ul {
  /* display: grid;
  grid-template-columns: repeat(10, 10%);
  grid-template-rows: repeat(10, 10%); */
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}
li {
  display: block;
  position: absolute;

  list-style-type: none;
  /* background-color: orange; */
  background-color: black;
  color: lightblue;
  font-size: 100%;
  font-family: sans-serif;
  color: black;
}
li.active {
  outline: 4px solid orange;
  outline-offset: -4px;
  z-index: 10;
}
li.active-min {
  outline: 4px solid green;
  outline-offset: -4px;
  z-index: 10;
}
li.min {
  outline: 4px solid green;
  outline-offset: -4px;
  z-index: 10;
}
li.actively-looking {
  outline: 4px solid red;
  outline-offset: -4px;
  z-index: 10;
}

#controls {
  display: flex;
  z-index: 1000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 10px;
  color: lightblue;
}

#controls i {
  font-size: 1500%;
  padding: 20px;
  margin: auto;
}

#controls.hidden {
  display: none;
}
