body {
  background-color: #fffffa;
  color: #424242;
  display: flex;
  flex-direction: column;
  font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  min-height: 100vh;
}
/* Create sticky footer */
body > div {
  flex: 1;
}

header {
  align-items: center;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  padding: 0rem  20rem;
}
header nav {
  display: flex;
  flex-direction: row;
}
header nav li {
  cursor: pointer;
  list-style: none;
  margin-right: .1rem;
}
header nav li a {
  background: #eaeaea;
  color: #7f7f7f;
  font-size: 1.15rem;
  font-weight: 900;
  padding: 1.25rem 3rem;
  text-decoration: none;
}
header nav li a:hover {
  background: #424242;
  color: #ddd;
}
  
body > div > a > img {
  overflow: hidden;
  width: 100%;
  max-height: 550px;
  object-fit: cover;
}

main {
  background: rgba(255,255,250,.05); 
  padding: 1rem  20rem;
}
main .download {
  float: right;
  font-size: 1.2rem;
  font-weight: 900;
}
main a.download[href$=".pdf"]
{
  background:url("/svg/document-text.svg") no-repeat left;
  padding-left:2rem;
}

footer {
  align-items: center;
  background-color: red;
  background: url('/imgs/footer-bg.jpg') center center repeat;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 1);
  display: flex;
  justify-content: space-between;
  padding: 1rem  20rem;
}
footer p, footer a {
  color: gray;
  text-decoration: none;
}