/* Fondo de la página */
body {
  margin: 0;
  padding: 0;
  background-image: url("fondo.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Galería */
.galeria {
  position: relative;  /* Necesario para que los hijos se ubiquen dentro */
  width: 100%;
  height: 100vh; /* ocupa toda la pantalla */
}

.galeria img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  position: absolute; /* clave */
  transition: transform 0.3s;
}

.galeria img:hover {
  transform: scale(1.1);
}

/* Cada imagen en su lugar */
.img1 { top: 50px; left: 100px; }
.img2 { top: 200px; right: 150px; }
.img3 { bottom: 100px; left: 300px; }

