/* GLOBAL STYLES */
body {
  font-family: helvetica, arial, sans;
}

h1 {
  font-size: 7vw;
  margin-top: 0;
}
a {
  color: #f00;
}

h2 ~ p {
  font-size: 0.8em;
  font-style: italic;
  margin: 1em auto 0;
  max-width: 70%;
  text-align: center;
}

html {
  box-shadow: 0 0 0 30px #000 inset;
  padding: 0 30px;
}

/* HEADER STYLES */
.header {
  background-color: #000;
  color: #fff;
  position: fixed;
  width: 100%;
  z-index: 20;
}

.header--logo {
  background-color: #000;
  box-sizing: border-box;
  display: block;
  height: 10vh;
  left: -30px;
  padding-top: 10px;
  position: relative;
  text-align: center;
  width: 10vh;
}

.header--logo:hover,
.header--logo:active {
  background-color: #ed6e2f;
}

.header--logo img {
  width: 4.3vh;
}

.header--nav {
  float: right;
  padding: 5.5vh 60px 0 0;
}

.header--nav > li {
  display: inline-block;
  margin-left: 1em;
}

.header--nav > li ~ li {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 1em;
}

.header--nav a {
  color: #fff;
}

.header--nav > li:first-child a {
  color: #ed6e2f;
}
.header--nav > li:first-child a:hover {
  color: #fff;
}

.header--nav > li:last-child a {
  color: blue;
}
.header--nav > li:last-child a:hover {
  color: #000;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a:active {
  color: #ed6e2f;
}

/* FOOTER STYLES */
.footer {
  background-color: #000;
  padding: 10vh 0 15vh;
  text-align: center;
}
.footer--logo img {
  width: 50px;
}
.footer h3 {
  color: #fff;
  padding-top: 1.5em;
  text-transform: uppercase;
}
.footer h3 span {
  color: #aaa;
}

.footer--nav li {
  display: inline-block;
  margin: 2em 1em 0;
}
.footer--nav a {
  color: #ccc;
}

/* HERO STYLES */
.full-hero {
  background-color: #c7dbfc;
  height: 50vh;
}

.full-hero:hover {
  background-color: #abcdef;
}

/* SOCIAL STYLES */
.social-link {
  background: rgba(150, 150, 150, .5);
  border-radius: 99px;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-family: helvetica, arial, sans;
  font-size: 1rem;
  font-weight: bold;
  height: 2.5em;
  line-height: 1;
  padding-top: 0.85em;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  width: 2.5em;
}

.social-link:hover,
.social-link:active {
  background-color: #ed6e2f;
}

.social-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.social-list > li {
  display: inline-block;
  margin: 0 0.5em;
}

/* BIO STYLES */
.bio-wrapper {
  font-size: 24px;
  margin: auto auto 10px;
  max-width: 960px;
  overflow: hidden;
}

.bio-box {
  border: 1px solid #000;
  border-color: black black red;
  box-sizing: border-box;
  float: left;
  font-size: 1rem;
  margin: 40px 1% 0;
  padding: 0 2% 2%;
  width: 23%;
}
.bio-box h3 {
  color: #fff;
  font-size: 1.5em;
  margin: -40px 0 1em;
  text-align: center;
}

.bio-box img {
  width: 100%;
}

.bio-box .social-link {
  display: block;
  margin: 2em 0 1em;
}

.bio-copy {
  font-size: 1em;
  line-height: 1.5;
}
.bio-copy a {
  color: green;
}
