/* Italian page background */
body.italian {
  background: url('background-it.png') no-repeat center center fixed;
  background-size: cover;
}

/* Docker styling */
.docker {
  border: 4px solid #444;
  margin: 40px auto;
  padding: 20px;
  width: 80%;
  background: rgba(0, 0, 0, 0.5);
}

/* Painting style */
.painting {
  width: 200px;
  height: 200px;
  background-size: cover;
  margin: 10px;
  display: inline-block;
  position: relative;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.9);
  transition: transform 0.3s ease;
}

.painting:hover {
  transform: scale(1.05);
}

.painting .hover-character {
  display: none;
  position: absolute;
  top: -50px; /* adjust */
  left: 50%;
  transform: translateX(-50%);
  width: 100px; /* adjust */
}

.painting:hover .hover-character {
  display: block;
}
