.color-palettes {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
  }
  
  .palette {
    width: 100px;
    height: 100px;
    margin: 10px;
    cursor: pointer;
    position: relative;
    /* border-style: solid;
    border-width: 2px; */
    border-radius: 10px;
  }
  
  .palette:hover::before {
    content: attr(data-color);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
  }
  
  .palette:active::before {
    content: attr(data-color);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 5px;
    font-size: 12px;
  }
  
  #generate-button {
    display: block;
    margin: 20px auto;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  