.color-container {
    border-radius: var(--window-border-radius);
    background-color: white;
    overflow: hidden;
}

.palette {
    display: flex;
    height: 100px;
    width: 300px;
}
  
  .color {
    width: 0px;
    height: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
    transition: flex 0.1s linear;
  }
  
  .color span {
    color: white;
    opacity: 0;
    transition: opacity 0.1s linear;
    margin: 0;
  }
  
  .color:nth-child(1) {
    background: #264653;
  }
  
  .color:nth-child(2) {
    background: #2a9d8f;
  }
  
  .color:nth-child(3) {
    background: #e9c46a;
  }
  
  .color:nth-child(4) {
    background: #f4a261;
  }
  
  .color:nth-child(5) {
    background: #e76f51;
  }
  
  .color:hover {
    flex-grow: 2;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  
  .color:hover span {
    opacity: 1;
  }

  #stats {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    color: #bebebe;
    padding: 10px 17px;
  }

  #stats > div {
    width: 100%;
    text-align: center;
  }