* {
  box-sizing: border box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  color: black;
  background: #f9f9f9;
}

header {
  padding: 1em 0;
}

a {
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  color: #ED1C24;
  position: relative;
}

a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #ED1C24;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
	transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

a:hover::after,
a:focus::after {
  color: white;
	height: .2rem;
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

nav {
  text-align: center;
}

nav ul {
  list-style: none;
}

nav ul li {
  display: inline-block;
  vertical-align: middle;
}

nav ul li {
  padding-left: 1rem;
}

nav ul li:last-child {
  margin: 0;
}

.logo {
  width: 20%;
}

.logo img {
  width: 100%;
}

.container {
  max-width: 85%;
  width: 1200px;
  margin: 0 auto;
  
}

h1 {
  font-size: 4rem;
  line-height: 4rem;
  text-transform: uppercase;
  text-align: center;
  color: #ED1C24;
  text-shadow: -4px 2px 0px #ffab70;
  -webkit-text-stroke: 2px black;
  -webkit-text-fill-color: none;
}

h2 {
  font-size: 2.5rem;
  line-height: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #59b4ff;
  text-shadow: 4px 2px 0px #6bffd0;
  -webkit-text-stroke: 1px black;
  -webkit-text-fill-color: none;
  padding-bottom: 1rem;
}

.row {
  margin-bottom: 2rem;
}

.row:last-child {
  margin: 0;
}

#people, #weapons, #places, h2 {
  text-align: center;
}

#people img, #weapons img, #places img {
  width: ;
}

.gray {
  padding: 2rem 1rem;
  background: #ededed;
}

span {
  font-weight: 700;
  background: #ED1C24;
  color: white;
}

ol, p { width: 70%; margin: 0 auto; }

ol li, p {
  padding-bottom: 1rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 400;
  color: #cdd2d8;
  text-transform: uppercase;
}

#home {
  display: block;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  background: #ED1C24;
  color: white;
  padding: 1rem;
}

@media only screen and (max-width: 600px) {
  .gray { padding: 1em; }
  nav ul li { padding: 0 }
  ol, p { width: 90%; }
}