I have an issue with the image not centering quite properly and whenever I resize the browser the right side goes past the border, I am guessing its a combo of flex-box and block element but I can’t seem to figure it out. tribute-page
Try add this
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
Some elements have their own default margin and padding.
Works like a charm. I am going to keep that in mind. Thank you.