.bar-of-colors {
    display: flex;
    z-index: 100;
    width: 100%
  }
  
  .bar-of-colors .one-color {
    width: 18%;
    height: 20px;
    z-index: 100;
  }
  
  .bar-of-colors .red {
    background-color: #e8412c;
    margin-right: 4%;
  }
  
  .bar-of-colors .yellow {
    background-color: #ffd405;
    margin-right: 4%;
  }
  
  .bar-of-colors .green {
    background-color: #76b82d;
    margin-right: 4%;
  }
  
  .bar-of-colors .blue {
    background-color: #00abd2;
  }