.image-container {
position: fixed;
inset: 0;
pointer-events: none;
z-index: -1;
}
.content_img-wrap {
position: fixed; /* ✅ THIS is the fix */
width: min(200px, 20vw);
aspect-ratio: 1 / 1;
border-radius: 10px;
overflow: hidden;
will-change: transform, opacity;
}
.content_img {
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
}