Portfolio Page -- Feedback

Project Link -https://codepen.io/lindleycaleb/full/gdxKXj/

My “view all” button bugs the crap out of me. The background fades black before the font turns white. Any suggestions on how to fix that would be helpful. I feel like my html is sloppy in that section.

Thanks!

You can simply do something like this.

<a href="https://www.google.com/">
   <button id="link">Visit Google</button>
</a>
#link:hover {
  background-color:green;
  color:red;
}

Wrap a tag around your button.
also I would increase size of you input boxes.

Otherwise, good job!