.flexbox{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 6.6rem;
}

.parts-title{
    margin-top: 6.6rem;
}

#customers {
    border-collapse: collapse;
    width: 66%;
    margin-bottom: 6.6rem;	
    transition: all 0.3s;
  }
  
  #customers td, #customers th {
    border: 1px solid #dddd;
    padding: 8px;
  }

  #customers tr:nth-child(even){
    background-color: rgb(167 163 149);
    color: #1F1C24;
	}

  
  #customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    /* background-color: #04AA6D; */
    /* color: white; */
  }