.box {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  background-position: center;
}

.box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  filter: grayscale(100%);
  z-index: 1;
}

.box > .container {
  z-index: 10;
}

#box-1 {
  background-image: url(../../assets/img/logenhistorie/dom.jpeg);
}

#box-2 {
  background-image: url(../../assets/img/logenhistorie/friedrich-wilhelm.jpeg);
}

#box-3 {
  background-image: url(../../assets/img/logenhistorie/erfurt.jpg);
}

#box-4 {
  background-image: url(../../assets/img/logenhistorie/torgau.jpg);
}

#box-5 {
  background-image: url(../../assets/img/logenhistorie/bonn.jpg);
}

#box-6 {
  background-image: url(../../assets/img/logenhistorie/ww2.jpg);
}

#box-7 {
  background-image: url(../../assets/img/logenhistorie/5-punkte.jpg);
}

#box-8 {
  background-image: url(../../assets/img/logenhistorie/logenhaus-bonn.jpg);
}

.parallax-heading {
  font-size: 50px;
  color: white;
  margin: 0px;
}

.parallax-p {
  font-size: 1.2rem;
  text-align: justify;
  letter-spacing: 1.2px;
}

/* Media query for tablets */

@media (max-width: 768px) {
  .parallax-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .parallax-p {
    font-size: 1rem;
  }
}

/* Media query for mobile devices */

@media (max-width: 576px) {
  .parallax-heading {
    font-size: 28px;
  }
}

