Portfolio page feedback wanted

This project took me nearly a month to complete, partly because of its scale and my experience.I would like Feedback on how to further improve my portfolio page and simplify my code.All feedback is appreciated.

here is the Link to the portfolio: https://codepen.io/abdisaid99/full/vgxYYg/

  1. Make the background picture of HOME, ABOUT section more dark, or use some transparent dark div to make the font more visible.
  2. Use smooth scrolling, Add code:

The navigation will be smooth just add javascript:

$(‘a[href*="#"]:not([href="#"])’).click(function() {
if (location.pathname.replace(/^//, ‘’) == this.pathname.replace(/^//, ‘’) && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $(’[name=’ + this.hash.slice(1) + ‘]’);
if (target.length) {
$(‘html, body’).animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});

Ref: https://css-tricks.com/snippets/jquery/smooth-scrolling/

  1. Improve your font style by adding google font in your design.
  2. Make bold and thin font combination to make your text more attractive.