Feedback on Product Landing page

Hello, World!
I’ve just finished my product landing page. It’s based off the Portal universe, in case you couldn’t guess. (It’s not exactly subtle)
Anyway, here’s the link: https://codepen.io/aviage-01/pen/qKMNaz?editors=1100
Thanks!

It is a good first attempt. One thing that bothers me is the fact that the Three main headers are centered, but the 3 bullets under Our values are not centered. They are left justified at the start of Our values.

Also, you should not use   to create spaces between your nav links. Use padding/margin properties in your .nav-link definition to achieve the spacing.

I thought that they were centered, because I set the main element to centered. If they aren’t centered, how would I center them?

Also, I tried to use the margin and padding, but it didn’t seem to make a difference. I have got very slow internet, which often messes up the page, so maybe that’s the problem…

Add padding-left:0; to your ul selector.

Thanks! That does look better!