body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}


canvas {
  background-color: rgb(91,91,91);
}

#statsContainer {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  color: white;
  flex-direction: column;
  align-items: flex-start;
}


.bar {
  height: 30px;
  border-radius: 10px;
  margin-bottom: 10px;
  left: 20px;
}

#preyCountContainer, #predatorCountContainer {
  display: flex;
  align-items: center;
}


#preyBar {
  background-color: green;
}

#predatorBar {
  background-color: red;
}

#preyCount, #predatorCount {
  font-size: 20px;
  font-weight: bold;
  margin-right: 10px;
  margin-bottom: 10px;
}
