



/* 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(19,30,46,0.5), rgba(19,30,46,0.5)), url("Burntwood Martyr Header 1.jpg");

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

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.banner {
	position: relative;
}	

/* Place text in the middle of the image */
.hero-text {
  background: rgba(19,30,46,0.5);
  text-align: center;
  position: absolute;
  width: 80%;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--light);
}

figure {
	margin: 0;
}

nav, footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
      }
      
nav ul, footer ul {
     display: flex;
     list-style: none;
     margin: 1em 0 0 0;
     padding: 0;
      }

nav li, footer li {
     margin-right: 1rem;
      }

nav li:last-child, footer li:last-child {
     margin-right: 0;
      }
      
nav a {
     margin-left: 0px;
     text-decoration: none;
	 color: var(--dark);
      }

.title {font-size: 26px;}
