/*#region Breakpoints*/
/*#endregion*/
header {
  position: fixed;
  width: 100%;
  z-index: 10;
}

#article .articleHeader {
  padding-top: 40px;
  background-color: black;
}
#article .articleHeader .headerBackground {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#article .articleHeader .headerBackground::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
#article .articleHeader .headerBackground h1 {
  font-size: 2.5rem;
  z-index: 1;
}
@media (min-width: 768px) {
  #article .articleHeader .headerBackground {
    height: 400px;
  }
  #article .articleHeader .headerBackground h1 {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  #article .articleHeader .headerBackground {
    height: 500px;
  }
}
#article .articleContent {
  padding: 30px 7%;
  font-size: 1.2em;
}
@media (min-width: 768px) {
  #article .articleContent {
    padding: 30px 20%;
  }
}
@media (min-width: 992px) {
  #article .articleContent {
    padding: 30px 20%;
  }
}

/*# sourceMappingURL=article.css.map */
