/* Global container */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 1em;
  box-sizing: border-box;
}

/* ============================
   Algemene CSS voor titelblok
   ============================ */

.title-container {
  text-align: center;
}

.title {
  position: relative;
  width: 100%;
  padding: 3em;
  margin-bottom: 30px;
  box-sizing: border-box;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: transparent;
  color: #2c3335;
}

.title::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  z-index: 1;
}

.title h1 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 2.5rem;
}

.title h2 {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 2rem;
}
