.sorter .item {
  min-height: 200px;
  border-radius: 10px;
  background-color: #2b2a29;
  border: 1px solid #555;
  color: #fff;
  text-align: center;
  padding: 10px;
  overflow: auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  transition: transform 0.2s ease, background 0.2s ease;
}

.sorter .item:hover {
  transform: scale(1.05);
}

.sorter .color-swatch {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 8px;
}

.sorter .text-item {
  background-color: #333;
}

.sorter .color-item {
  background-color: #242424;
}

.sorter {
  max-height: 750px;

}

#container {
  margin: auto;
  max-width: 1500px;
}

#talking {
  background: #f7f5f2;
  padding: 20px; margin-bottom: 10px;
}

#setup {
  padding: 1rem;
  background: #f7f5f2;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  max-height: 400px;
  max-width: 90vw;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center; 

  height: 350px;
}
