body,
h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  /* color: var(--header-text-color); */
  /* color: var(--dark-background-text-color); */
  color: var(--white-background-text-color);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

h2,
h3,
p {
  margin-bottom: 1em;
}

img {
  display: block;
  max-width: 100%;
}

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

section {
  padding: 1rem 1rem;
}

.container {
  padding: 0 1em;
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  /* border: 2px solid red; */
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

p {
  text-align: justify;
}

html {
  scroll-behavior: smooth;
  /* Fixes the anchor scroll */
  /* scroll-padding-top: calc(var(--s-padding, 0) / 2); */
  scroll-padding-top: var(--header-height);
  /* scroll-padding: 78px; */
}

.slanted-background {
  position: relative;
  /* isolation: isolate; */
}

.slanted-background::after {
  content: "";
  background-image: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);
  position: absolute;
  z-index: -1;
  inset: 0;
  top: 60px;
  height: 10px;
  /* transform: skewY(-1deg); */
}

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

.header-mat-divider {
  width: 100%;
  --mat-divider-width: 5px !important;
}

.beforeStickyFilter {
  position: sticky;
  top: var(--header-height);
  transition: all 0.5s;
  z-index: 9;
}

.beforeStickyHeader {
  position: sticky;
  top: var(--header-height);
  transition: all 0.5s;
  z-index: 9;
}

.isStickyHeader {
  width: 100vw;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;

  color: white;

  background-color: var(--secondary-color);
}

.dark-background-text-color {
  color: var(--dark-background-text-color);
}