/* Basic styling for the scene container */
.my-scrolling-scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Styling for images or videos within the scene */
.my-scrolling-scene img,
.my-scrolling-scene video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s; /* Add a transition for smooth opacity changes */
}
