Hi. I recently started the frontend library course, and even tho I haven’t finished it yet (still missing React/Redux) I decided to try doing the random quote machine and add that stuff later on. I’ve passed all user stories, except the one that says to center the #quote-box, even though it appears to be centered. (and yes, before you asked I tried full viewport at 100% zoom)
It is asking you to center the element, not its content. You need the #quote-box element to have a width and be centered.
wrapper is not a standard HTML element, and custom elements are inline by default. You can not give inline elements a width. So first you have to make it a block-level element, or set its display to block (or some other non-inline display type).