canvas {
  border: 1px solid #000;
  position: fixed;
  top: 50px;
  left: 400px;
  background-color: #333;
}

h2 {
  margin-top: 0px;
  margin-bottom: 10px;
}

div#controls {
  position: fixed;
  top: 20px;
  left: 50px;
  width: 325px;
  height: 500px;
}

div#graphing {
  position: fixed;
  top: 50px;
  left: 925px;
  width: 400px;
  height: 500px;
}

body {
  background-color: #ddd;
  line-height: 170%;
}

div#key {
  background-color: #333;
  font-weight: bold;
  position: fixed;
  top: 10px;
  left: 400px;
  width: 500px;
  text-align: center;
}

div#stats {
  position: fixed;
  top: 560px;
  left: 405px;
  font-weight: bold;
}
div#infos {
  margin-top: 600px;
  overflow-y: auto;
}

.healthy {
  color: #94fc03;
}

.infected {
  color: #fc5203;
}

.recovered {
  color: #33beff;
}

div#grapha {
  background-color: #333;
  width: 400px;
  height: 140px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
}
div#graphb {
  background-color: #333;
  width: 400px;
  height: 200px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 10px;
  margin-bottom: 10px;
}
div#graphc {
  background-color: #333;
  width: 400px;
  height: 140px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
}

div.graphElement {
  background-color: #fc5203;
  width: 1px;
}
div.graphElementH {
  background-color: #94fc03;
  width: 1px;
}
div.graphElementR {
  background-color: #33beff;
  width: 1px;
}
