* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
}
.header {
  background-color: #bc2027;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header :last-child {
  margin-right: 3%;
}
.links {
  font-size: 3.6vw;
  color: #ffffff;
  text-decoration: none;
}
.header-logo {
  width: 20%;
  background-color: #ffffff;
  padding: 25px 4%;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.hero {
  min-height: 500px;
  width: 100%;
  flex-direction: column;
  background-image: url("../img/wsu1.jpg");
  background-position: center;
}
.outline {
  margin: 4vw;
  border: 5px solid white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.members-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.member {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 2.5% 0px 2.5%;
}

.member-image {
  width: 100%;
  border-radius: 50%;
}
.space {
  margin: 50px 0px 0px 0px;
}
.nospace {
  margin: 0px 0px 0px 0px;
}

.title {
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin: 30px 0 0 0;
  font-size: 50px;
  width: 90%;
}
.h2-title {
  font-size: 50px;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}
.team-title {
  font-size: 35px;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
}
.member-name {
  font-size: 30px;
  line-height: 2;
  color: #ffffff;
  margin: 0;
}
.member-title {
  font-size: 25px;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}
.team-desc {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  width: 90%;
}

.purple {
  background-color: #bb2027;
}
.orange {
  background-color: #ff8e17;
}
.green {
  background-color: #074e51;
}

.underline {
  height: 5px;
  width: 100%;
  background-color: #ffffff;
}
.placeholder {
  min-height: 1280px;
}
.works {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.work-item {
  width: 90%;
  margin: 20px 0;
}
.work-item-square {
  width: 90%;
}
@media only screen and (min-width: 600px) {
  .title {
    font-size: 6.25vw;
    width: 75vw;
  }
  .h2-title {
    font-size: 6.25vw;
  }
  .hero {
    height: 700px;
  }
  .member {
    width: 40%;
  }
  .team-title {
    font-size: 5.2vw;
  }
  .team-desc {
    font-size: 3vw;
  }
  .works {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
  }
  .work-item {
    width: 45%;
  }
  .work-item-square {
    width: 30%;
  }
  .header-logo {
    padding: 10px 4%;
  }
}

@media only screen and (min-width: 1280px) {
  .hero {
    min-height: 800px;
  }
  .member {
    width: 27%;
  }
  .team-desc {
    font-size: 2.6vw;
  }
  .member-title {
    font-size: 1.9vw;
  }
  .member-name {
    font-size: 2.6vw;
  }
  .header-logo {
    padding: 0px 4%;
  }
}

@media only screen and (min-width: 1920px) {
  .hero {
    min-height: 910px;
  }
  .works {
    flex-wrap: wrap;
    max-height: 1620px;
  }
}

/* FOOTER */
footer {
  border-style: solid;
  text-align: center;
  font-size: 2em;
  font-weight: 700;
  color: #ffffff;
  margin: 0 auto;
  background-color: #54565a;
}

#footer {
  text-align: center;
  padding: 5px;
}

footer p {
  font-size: 16px;
  font-weight: 300;
  padding-top: 0;
  padding-bottom: 20px;
  margin-bottom: 0;
}
