
body {
  background-color: #000;
  color: #fff;
  font-family: monospace;
  margin: 0;
  padding: 0;
}
.header {
  text-align: center;
  font-size: 1.6em;
  margin: 20px;
  letter-spacing: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.intro {
  text-align: center;
  font-size: 1em;
  color: #aaa;
  margin-bottom: 30px;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.piece {
  width: 300px;
  margin: 10px;
  text-align: center;
}
.piece img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 1px solid #444;
}
.piece h2 {
  font-size: 1em;
  white-space: normal;
  word-break: break-word;
}
.description {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  color: #ccc;
  font-size: 0.9em;
  line-height: 1.6em;
  text-align: center;
}
