html {
  height: 100%;
  width: 100%;
  background-color: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
body #game{
  border: 2px solid white;
}
.buttons{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  
}
.settings{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.debugInfo{
  position: fixed;
  bottom: 0;
  left:0;
  border: 1px solid white;
  display: flex;
  flex-direction:row;
  align-items: center;
  width: 99.7%;
  justify-content: space-around;
  flex-wrap: wrap;
}
.loop{
  padding: 1px;
}
p{
  margin: 0;
}
.debugInfo > div{
  width: -webkit-fill-avaliable;
}