body {
  font-family: Verdana, sans-serif;
  margin: 0;
  padding: 160px 0 0 0;
  background-color: #0b0b0b;
  color: white;
  /* Ensures scroll offset so headings aren't hidden by the fixed header */
  scroll-padding-top: 120px;
  text-shadow: 1px 1px 2px black;
  font-size: 1.2em;
  line-height: 1.7;
}

.hero {
  background-image: url("/images/background_photo.jpg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-blend-mode: color-burn;
  background-color: rgba(255, 20, 20, 0.2);
  padding: 7rem 0 2rem;
  text-align: left;
  background-position: top center;
}
.hero h2 {
  color: white;
  margin: 0;
  padding: 0;
  font-size: 4rem;
}

.content {
  margin: 0px auto;
  max-width: 1400px;
}

.site_content {
  padding: 50px;
  color: #b7b7b7;
  /*
  background-image: url('/images/ember.png');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  */
}

header {
  background-color: #1d1d1d;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  text-align: center;
}

header h1 {
  margin: 0;
  padding: 0;
  font-size: 3rem;
  color: #f05454;
}

nav {
  margin: 0 0;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  display: inline;
  margin: 0 1rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
}
nav ul li a:hover {
  color: #f05454;
}

/* Centering the Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  margin-top: 10px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
}

.hamburger div {
  width: 30px;
  height: 3px;
  background-color: #f05454;
  margin: 5px;
}

/* Responsive navigation */
@media screen and (max-width: 650px) {
  nav ul {
    display: none;
    flex-direction: column;
    background-color: #1d1d1d;
    position: absolute;
    width: 100%;
    top: 80px;
    left: 0;
    z-index: 999;
  }
  nav ul.show {
    display: flex;
  }
  nav ul li {
    display: block;
    margin: 20px 0;
  }
  nav ul li a {
    font-size: 1.5em;
  }
  .hamburger {
    display: block;
  }
}
section {
  padding: 100px 20px 50px;
}

h2 {
  font-size: 2.5em;
  color: #f05454;
}

p, ul {
  font-size: 1.1em;
  line-height: 1.6;
}

footer {
  background-color: #1d1d1d;
  padding: 1.5rem 0;
  margin-top: 30px;
}

footer p {
  margin: 0;
  font-size: 0.9em;
  color: #888;
}

.btn {
  background-color: #f05454;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin: 10px;
  display: inline-block;
  font-size: 1.1em;
}

.btn:hover {
  background-color: #e94545;
}

.gallery_photo {
  border: 5px solid white;
  max-width: 300px;
  max-height: 300px;
}

.member_thumbnail {
  display: inline-block;
}
.member_thumbnail h3 {
  margin: 0;
  padding: 0;
}

/*# sourceMappingURL=app.css.map */
