* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-size: 18px;
    font-family:'Century Gothic','Futura',san-serif;
    color: #5D6063;
    background-color: rgba(26, 101, 214, 0.329);
    height: 100%;
  }

.header {
    display: flex;
    justify-content: space-around;
    
    width: 100%;
    padding: 50px;
    background:  steelblue;
    height: 100px;
  }

.header-container {
  display: flex;
  justify-content: space-between; 
}

.header-links {
  width: 300px;
  display: flex;
  justify-content: space-around;
}

.survey-about {
  width: 900px;
  padding: 30px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.footer {
  height: 100px;
  background-color: slategray;
  box-shadow: 0px -4px 5px 0px rgb(108, 104, 108);
}

.logo {
  position: relative;
  bottom: 80px;
}

.logo-container {
  width: 80px;
}

.researcher-grid-container {
  display: flex;
  justify-content: center;
  /* border: 1px solid #5D6063; */
}

.researcher-grid {
  width: 1000px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  /* border: 1px solid #5D6063; */

}

.researcher {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 300px;
  height: 100%;
  /* background-color: rgba(23, 150, 167, 0.05); */
  padding: 10px;
  padding-top: 10px;
  /* border: 1px solid #5D6063; */

}

.portrait {
  display: flex;
  justify-content: center;
  height: 200px;
}

#sb-site {
  background-color: burlywood;
}

hr {
  border: 5px solid black;
  border-width: 2px;
}

hr.style-three {
  height: 10px;
  border-style: solid;
  border-color: grey;
  border-width: 2px 0 0 0;
  }

.spacer {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
  }

.img-holder {
  display: flex;
  align-items: center;
  justify-content: center;
}