/* 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(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)), url("/images/products.jpg");

  /* Set a specific height */
  height: 320px;

  /* 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%);
	width: 90%;
	text-shadow: 1px 1px 5px rgba(0,0,0,.5);
}

.hero-text h1 {
	color: #2E2C2C;
}

@media only screen and (min-width: 601px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .hero-text h1 {
    font-size: 2rem;
  }
}