@charset "UTF-8";
/* CSS Document */

.container {
  position: relative; /* Create a stacking context */
}

.base-img {
  position: relative; /* Base image stays in the normal flow */
  /* You can adjust its position further if needed */
}

.overlay-img {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}