/* Ajoutez la propriété border-spacing: 0; à la règle CSS de la table */

body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
}

h1 {
  color: #34495e;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

h2 {
  color: #34495e;
  font-family: 'Roboto', sans-serif;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 15px;
}

.palette{
       margin: 0 auto;
       margin-bottom: 50px;
}

button {
  font-size: 14px;
  width: 160px;
  height: 80px;
  margin: 0px;
  padding: 0px;
  padding-left: 6px;
  padding-bottom: 6px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  color: #fff;
  display: flex;
  align-items: flex-end;
}

table {
  border-spacing: 0;
}

#copyText {
  display: none;
  position: fixed;
  top: 10px;
  left: 90%;
  transform: translateX(-50%);
  padding: 10px;
  background-color: #2c3e50;
  color: #fff;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.5s;
}

@media (max-width: 800px) {
    button {
      width: 80px;
      font-size: 10px;
    }
  }