* { margin: 0; padding: 0; box-sizing: border-box; }

header {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: rgb(54, 52, 85);
    color: rgb(48, 171, 75);
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
}

body {
    background-color: #ccc;
}

.thumbnail-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px;
}

.thumbnail-gallery img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.thumbnail-gallery img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.thumbnail-gallery figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px; 
  margin: 0;
  text-align: center;
  word-wrap: break-word;
}

.thumbnail-gallery figcaption {
  margin-top: 6px;
  font-size: 0.85em;
  color: #333;
  padding: 0 5px;
  line-height: 1.2;
}