/* CSS BELOW */

html {
  position: relative;
  min-height: 100%;
}

pre, p {
  line-height: 1.2em;
}

header {
  position: relative;
  width: 100%;
  z-index: 100;
}

header img {
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: 1;
}

header .primary-nav {
  background-color: #9F2122;
  border-bottom: 10px solid #b8860b;
  min-height: 100px;
  padding-left: 200px;
}

header .primary-nav a {
  top: 40px;
  position: relative;
}

@supports (display: flex) or (display: -webkit-box) or (display: -ms-flexbox) {
  header .primary-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
  header .primary-nav a {
    position: static;
    top: none;
  }
}

header .primary-nav a {
  text-decoration: none;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 30px;
}

header .primary-nav a:last-child {
  margin-right: 0;
}

.flashes {
  position: relative;
  left: 17%;
}

.content {
  position: relative;
  color: #232f3c;
}

.back {
  border: 1px solid black;
  padding: 10px;
  border-radius: 7%;
  background-color: #9f2122;
  color: #f5f5f5;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  bottom: 18px;
}

.inner,
.titleContainer {
  position: relative;
  width: 85%;
  /* padding-bottom: 90px;  for footer*/
  margin: auto;
  text-align: left;
  margin-bottom: 100px;
}

.titleContainer {
  border-bottom: 3px solid #b8860b;
}

#pageTitle {
  font-size: 6.5em;
  font-family: 'Alfa Slab One', 'Helvetica', sans-serif;
  text-align: center;
  padding: 30px 0;
  margin-top: 30px;
  word-wrap: break-word;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background-color: grey;
}

.js-hidden {
  display: none;
}

.hidden {
  display: none;
}

@media (max-width: 1075px) {
  #pageTitle {
    font-size: 5em;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
  }
}

@media (max-width: 635px) {
  #pageTitle {
    font-size: 2em;
    padding-top: 0;
  }
  header img {
    width: 100px;
    height: 100px;
  }
  header .primary-nav {
    padding-left: 30%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 50px;
    margin-bottom: 50px;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
  }
  header .primary-nav a::before {
    content: '• ';
  }
  header .primary-nav a {
    padding: 5px 0;
    font-size: 1.1em;
  }
  header .primary-nav a:last-child {
    padding-bottom: 5px;
  }
  #hamburgerMenu {
    position: absolute;
    right: 10px;
    top: 6px;
    left: auto;
    width: 40px;
    height: 40px;
  }
}