body, html {
    height: 100%;
}

/* Nav above text and button */

.above-text {
  position: relative; 
  z-index: 999;
}

/* The hero image */
.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hero-image.jpg");

  /* Set a specific height */
  height: 50%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.nav-padding {
  padding-left: 15px;
  padding-right: 15px;
}

.section-padding {
  padding-top: 20px;
}

/** 
Remove Button Link Text Decoration
**/

.no-decoration {
  text-decoration: none;
  color: white;
}