.parallaxcontainer {
  height: 600px;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  /*
  border-top: 5px solid var(--clColorVividGreen);
  border-bottom: 5px solid var(--clColorVividGreen);
  background-blend-mode: darken;
  background-color: #00000066;
  */
}

/*
.parallaxcontainer.blue {
  background-color: #051047ab;
  background-blend-mode: darken;
}
*/

.parallaxcontainer .container {
  width: 100%;
  /*max-width: 1200px;*/
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  gap: 30px;
  text-shadow: 0 0 5px black;
}

.parallaxcontainer .container h2 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: var(--clFontSizeExtraLarge);
  /*color: #fbebeb;*/
}

/*
.parallaxcontainer.blue .container h2 {
  color: var(--clColorIllumiGreen);
}
*/

.parallaxcontainer .container p {
/*  color: white;*/
  line-height: 200%;
  font-size: var(--clFontSizeMediumPlus);
}

/*
.parallaxcontainer .container a {
  background-color: #653b47;
}

.parallaxcontainer.blue .container a {
  background-color: var(--clColorDarkGreen);
}

*/