Hello I’ve linked my code. I was wondering if someone could help me get the bullet points to all align in the middle like the example. so they are aligned.
Right now you have this: ul { text-align: center; }. To get the bullet points to align, they actually need to be aligned to the left.
Try putting your ul element inside of a div. You can style the width of the div to make your list just take up part of the width of the page instead of 100%. So the longer sentences will wrap.
Then you can center the div, while aligning each bullet point element to the left edge of the div so that they line up neatly.
Does that make sense?