/* SECTION 2 // Members */

#section_2 {
  display: block;
  align-items: center;
  justify-content: space-around;
  height: auto;
  padding: var(--section-padding);
  color: white;
  background: rgb(0, 0, 0) no-repeat center center / contain;
}

#portrait_container {
  display: block;
  margin: 0 auto;
}
  
#portrait {
  text-align: center;
  margin: 0 auto;
  background: var(--box-background);
  padding: var(--section-padding);
  border-radius: var(--border-radius);
}

#header_logo {
  display: block;
  margin: 0 auto;
  width: 80vw;
  height: 40vw;
  max-width: 500px;
  max-height: 200px;
  background: url("../../resources/logo/the-source_logo.jpg") no-repeat center center / contain;
}

#portrait_row {
  width: 100%;
  text-align: center;
}

.portrait_column {
  display: var(--display-blockinlineblock);
  vertical-align: top;
  width: var(--portait-width);
  /*max-width: 1024px;*/
  margin: 50px auto;
}

.portrait_column img {
  display: inline-block;
  height: var(--portait-height);
  margin: 20px auto;
}

.portrait_name {
  font-family: 'Radiant', serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.portrait_discription {
  opacity: 0.5;
}