body {
    margin: 0;
    background-color: transparent; 
}

#scroll-container {
    /* Set a large height to create a scrollbar. Adjust as needed. */
    /* A larger value makes the scrolling feel slower and more controlled. */
    height: 600vh;
}

#image-frame {
    /* Make the image stick to the top of the viewport */
    position: sticky;
    top: 200px;

    /* Center the image horizontally */
    display: block;
    margin-left: auto;
    margin-right: auto;

    /* Set the size of your animation frame */
    width: 100vw;
    /* max-width: 800px; */
    height: auto;
    object-fit: contain;
}
