/* GENERAL */
  
  #project-page-header {
    text-align: center;
  }

  #project-page-header h1 {
  border: none;
  font-size: 2.5em;
  text-transform: uppercase;
  }

  .box-padded {
  padding: 20px;
  margin: 20px 0;
  border-radius: 15px;
  }
  
/* NAV */
  
   #project-menu {
     margin-top: 5px;
     margin-bottom: 20px;
  }
   #project-menu ul {
     list-style: none;
     text-align: center;
     padding: 0;
     margin: 0;
     overflow: hidden;
  }
   #project-menu a {
     transition: background-color .3s;
     font-size: 1.15em;
     padding: 5px;
     text-decoration: none;
     padding-left: 7px;
     padding-right: 7px;
  }
   #project-menu a:hover {
     transition: background-color .3s;
     background-color: #efefef;
     border-bottom: solid 2px #3E0806;
  }
   @media (min-width: 600px) {
     #project-menu ul {
         display: flex;
         align-items: center;
         justify-content: center;
    }
  }

/* HOMEPAGE */

.project-banner {
  text-align: center;
  background-color: #3E4146;
  background-image: url("project-banner.jpg");
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 20px;
}

.banner-text {
  background-color: rgba(0, 0, 0, 0.55);
  padding: 100px 10px;
}

.banner-text .header {
  color: #FFFFFF;
  display: block;
  text-transform: uppercase;
}

.header .first-line {
  font-size: 2em;
}
.header .second-line {
  font-size: 3em;
}

@media (max-width: 991px) {
  .header .first-line {
    font-size: 1.75em !important;
  }
  .header .second-line {
    font-size: 2.75em !important;
  }
}

@media (max-width: 672px) {
  .header .first-line {
    font-size: 1em !important;
  }
  .header .second-line {
    font-size: 1.75em !important;
  }
}

@media (max-width: 390px) {
  .header .second-line {
    font-size: 1.25em !important;
  }
}

.feed-container {
  margin-top: 20px;
}

.feed-box {
  background-color: #efefef;
  padding: 10px;
}

.feed-title {
  border-bottom: 1px solid darkgrey;
  padding-bottom: 10px;
}


/* ABOUT PAGE */

.people-container {
  text-align: center;
}

.people-container .person {
  margin-bottom: 30px;
  background-color: #efefef;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: 8px;
  transition-duration: 0.5s;
}

.person:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
  transition-duration: 0.5s;
}  

.people-container .person img {
  width: 100%;
}

.people-container .person-info {
  padding: 10px;
}

.people-container .person-title {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 0.5px solid rgba(0,0,0,0.1);
}

.people-container .person-role {
  font-size: 18px;
  margin: 0;
}

