The white/gray-hover nav links on the pink background are a bit rough on the eyes due to the low contrast between the two colors. I recommend changing the background of the navbar to a dark color, then reducing the opacity to near transparency. So, something like
.navbar {
background: rgba(34, 34, 34, 0.3);
border: none;
}
This provides just enough contrast to improve readability.
Next, youāre navbar links are not collapsing for mobile users. To fix this, you need to add first JQuery then Bootstrapās Javascript file in your penās Javascript settings (always put JQuery before Bootstrapās own JS, as BootstrapJS depends on JQuery, so JQuery has to load first). Then, add this in your navbar-header div, right before your navbar-brand link
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
Finally, wrap your ul links in a div with the classes ācollapse navbar-collapseā and an id of ānavbar-collapseā. It should look like this:
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav navbar-right" id="links">
[links]
</ul>
</div>
Youāll have to adjust the padding in your navbar after the collapse, but this is pretty standard when designing with mobile users in mind.
The āClick plsā button in the main section should really do something when clicked. I clicked it and felt confused at first when nothing happened (āIs a plugin on my browser breaking something? Something should happen, right?ā) to dissatisfied when I realized nothing was going to happen. And it should be āstoppingā not āstopingā, but Iām not sure if thatās deliberate.
Finally, the quote under your āTestimonialā section is running off the right side of the page when the view gets smaller, and the āRead Moreā links are misaligned in the āAbout Meā section, floating to the left when they should be in the center, directly under the paragraphs . I think you need to rethink the column layout for those section when the view switches to mobile and tablet sizes. Again, this is something thatās standard when designing responsively.
Other than those things, it looks really nice. Itās very clean and modern, with a great layout and color scheme, and it looks very professional. I like it!