#departments {
  width: 100%;
  min-height: 900px;
  background-color: white;
}
#departments .level {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}
#departments .level div {
  padding: 8px;
  border: 2px solid black;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
#departments .level div:nth-child(3) {
  width: 600px;
}
#departments #green1, #departments #green2 {
  background-color: lightgreen;
}
#departments #blue {
  background-color: lightblue;
}
#departments #red {
  background-color: lightcoral;
}
#departments #black {
  background-color: black;
  color: white;
}/*# sourceMappingURL=departments.css.map */