.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Optionally, you can set a fixed width and height for the container */
    /* width: 100%; */
    /* height: 100vh; */
}

    /* Optionally, you can add some additional styles to center the image */
    .image-container img {
        display: block;
        margin: 0 auto;
    }
