My first project, feedback appreciated

I am posting my first attempt, I didn’t deviate from the sample as I wanted to get things right first before getting more creative.
Please let me know your thoughts.

https://codepen.io/lukemersh/full/ROoLLp

many thanks

Looks good! Here are few suggestions.

  • Your image doesn’t look centered. Instead of giving a fixed margin using left you can give it margin: 0 auto; which will center the image inside of its container.
  • Try using a different font family. https://fonts.google.com/ Here are free selections.
  • Aligning text center is usually not a good idea if its content is large. I would text align to the left.
  • Give your paragraphs line-height: 1.5 for better readability. It will give spaces between each lines.
  • Bullet points are too far away from its text. You can reduce the size of container of ul and center it using the previous method.

Cheers :slight_smile: :clap:

many thanks,
One thing is creating website by putting pieces together, but I am doing this to get a better understanding of how it all works.

I will definitely try your suggestions in future projects :+1: