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

html, body {
  height: 100%;
}

body {
  font-family: "Source Sans 3", sans-serif;
  background: linear-gradient(135deg, #0b0b0b 0%, #151515 100%);
  color: #f5f5f5;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

a {
  color: #e50914;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

.site-header {
  background: rgba(0, 0, 0, 0.85);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .brand__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #f5f5f5;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.navbar .nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}
.navbar .nav-links a svg {
  width: 1em;
  height: 1em;
  fill: #e50914;
}

.site-footer {
  background: rgba(36, 34, 34, 0.9);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  color: #777575;
  height: inherit;
  margin-top: 40px;
}
.site-footer .small {
  padding: 10px 0 0;
}
.site-footer .contact {
  margin-bottom: 20px;
}
.site-footer .legal {
  font-style: italic;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem;
}
.hero__media {
  text-align: center;
  margin-bottom: 4em;
}
.hero__cover {
  width: 55%;
  border-radius: 0.5rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}
.hero__title {
  font-family: "cheddar-gothic-rough", "pf-fuel-decay", "pf-fuel-grime", "kiln-sans-spiked", "cubano", "abolition", "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-align: center;
}
.hero__title span {
  display: block;
}
.hero__tagline {
  font-size: 1.35rem;
  line-height: 1.5;
  color: #f5f5f5;
  margin-top: 1rem;
  margin-bottom: 2rem;
  max-width: 60ch;
  text-align: center;
}
.hero__tagline em {
  font-style: italic;
  font-weight: 600;
  color: #f5f5f5;
}

.excerpt {
  max-width: 820px;
  margin: 4rem auto;
  padding: 0 2rem;
  line-height: 1.5;
}
.excerpt p {
  margin-bottom: 0.8rem;
}
.excerpt h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.excerpt .exists {
  margin-top: 2rem;
}
.excerpt .exists + p {
  margin-top: 0.5rem;
}
.excerpt .warning {
  margin-top: 3rem;
  font-size: 0.9rem;
  text-align: center;
  color: #888;
}
.excerpt .location {
  color: #888;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.excerpt .callout {
  border-left: 2px solid #c00;
  padding-left: 1rem;
  margin-top: 2rem;
  color: #ccc;
}

.cta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.meta-info {
  text-align: center;
}

.meta-help {
  text-align: center;
  color: #777575;
  font-style: italic;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.35rem;
  font-weight: 600;
  font-size: 1.25rem;
  transition: all 0.25s ease;
  cursor: pointer;
  width: 25%;
  text-align: center;
}
.button--primary {
  background: #e50914;
  color: #fff;
}
.button--primary:hover {
  background: rgb(189.7428571429, 7.4571428571, 16.5714285714);
}
.button--ghost {
  border: 2px solid #e50914;
  color: #e50914;
}
.button--ghost:hover {
  background: rgba(229, 9, 20, 0.6509803922);
  color: #000;
}
.button--link {
  color: #e50914;
  font-weight: 600;
}