.header {
  background-color: #e89b1a;
  border-radius: 20px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Desktop 3-image version */
.divOverlay {
  margin: 4em;
  position: relative;
  aspect-ratio: 2.6 / 1;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1em;
}

.flexBillede {
  flex: 1;
  max-width: calc(33.33% - 1em);
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile single-image version */
.divOverlayX {
  margin: 4em;
  position: relative;
  aspect-ratio: 2.6 / 1;
  width: 100%;
}

.billedeClass {
  width: 100%;
  height: auto;
  display: block;
}

/* Show desktop by default, hide mobile by default */
.divOverlayDesktop {
  display: flex;
}

.divOverlayMobile {
  display: none;
}

.HeaderTitel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titleBig {
  background-color: rgba(232, 155, 26, 0.7);
  padding: 30px;
}

.titleSmall {
  background-color: rgba(232, 155, 26, 0.85);
  padding: 20px;
}

.textHeader {
  color: #d33e2d;
}

@media (max-width: 799px) {
  .divOverlayDesktop {
    display: none;
  }

  .divOverlayMobile {
    display: block;
  }

  .divOverlayX {
    aspect-ratio: none;
    margin: 1em;
  }

  .titleBig {
    padding: 10px;
  }

  .titleSmall {
    padding: 10px;
  }
}
