.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.piece {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
}
.piece img {
  max-width: 100%;
  height: auto;
}
.piece.expanded {
  max-width: none;
}
.piece.expanded img {
  max-width: none;
}

.button {
  background-color: var(--button-color);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: bold;
  color: var(--button-link-color);
  margin-bottom: 1rem;
}

.buttons {
  display: flex;
}

.artist-info {
  padding: 1rem;
}