body {
  background: black;
  color: #e6edf3;
  font-family: monospace;
  margin: 0;
  padding: 10px;
}

.container {
  max-width: 600px;
  margin: auto;
}

.header {
  margin-bottom: 20px;
}

.section {
  margin-bottom: 20px;
}

.row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

/* bars */
.bar {
  height: 16px;
  background: #111;
  border-radius: 4px;
  overflow: hidden;
}

.fill {
  height: 100%;
  width: 0%;
  transition: width 0.5s;
}

.green {
  background: #4caf50;
}

.blue {
  background: #3a6ea5;
}
