How To Center Align emotive popup on specific page

Hi there! I would like to center align the iFrame within this specific page but am not quite sure what code is needed to be added within my theme.min.css file.

The URL to this page is: https://pekoproduce.com/pages/black-friday-early-access?_pos=1&_sid=a592eba0a&_ss=r

Thank you!

Hello @williamk0601 ,

Use this css

iframe#instagram-embed-0 {
    margin: 0 auto !important;
}

Thanks

Please add below css code in bottom of assets/theme.min.css file

.instagram-media {
margin: 0 auto !important;

}
Thank you.