html body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  width: 100vw;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
button {
  background: none;
  border: none;
}

/* === BASE HEADING === */

.page-header {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 40px;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.page-header span {
  display: block;
  font-size: 0.5em;
  line-height: 1.3;
}
.page-header em {
  font-style: normal;
  font-weight: 600;
}

/* === HEADING STYLE #1 === */
.page-header {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.page-header:before {
  width: 28px;
  height: 5px;
  display: block;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  margin-left: -14px;
  background-color: #b80000;
}
.page-header:after {
  width: 100px;
  height: 1px;
  display: block;
  content: "";
  position: relative;
  margin-top: 25px;
  left: 50%;
  margin-left: -50px;
  background-color: #b80000;
}
