body, html {
    height: 100%;
    font-family: sans-serif;
}

/* 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/heroarea-waterfalls-stylized.jpg");*/
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/img/heroarea-waterfalls-stylized.jpg");

  /* Set a specific height */
  height: 20%;

  /* 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;
}

.main-content {
  width: 90%;
  margin: 0 auto
}

@media only screen and (min-width: 35em) {
  .main-content{
    width: 80%;
  }
}

@media only screen and (min-width: 55em) {
  .main-content{
    width: 60%;
  }
}

p, li {
  font-family: "Raleway", sans-serif;
}

h1, h2 {
  font-family: 'Kalam', cursive;
}