Personal Portfolio - Can't make bootstrap buttons

Hello! I’m working on my personal portfolio page and trying to add some buttons to the first section (what I’m calling the “homepage” section). I put in the code for the button, but nothing appears. I’m very very new at this so any feedback at all is welcome. Link to codepen is below. Please and thank you!

https://codepen.io/kaydeejay/live/RjGNjV

Your button is displayed behind your navbar that’s why you can’t see it. You can move your whole homepage section down by 50px (size of your navbar) to fix this issue.

.homepage {
  width: 100%;
  height: 650px;
  background: #000;
  background-image: url("https://static.pexels.com/photos/163130/keyboard-black-notebook-input-163130.jpeg");
  background-size: cover;
  opacity: 0.5;
  display: block;
  margin-top: 50px; /* Add this */
  }```
1 Like