/* === Overlay Section - Text Only === */

.overlay-section-text-only {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*min-height: 50vh;*/
  padding-left: 15px;
  padding-right: 15px;
  background: #000;
  color: #fff;
  box-sizing: border-box;
}

.overlay-section-text-only .overlay-section-text {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  max-width: 1200px;
}

/* === MEDIA QUERIES === */

/* Large screens (default font size) */

@media (min-width: 1200px) {
  .overlay-section-text-only .overlay-section-text {
    font-size: 1.1rem;
  }
}

/* Medium screens */

@media (max-width: 992px) {
  .overlay-section-text-only .overlay-section-text {
    font-size: 1rem;
  }
}

/* Small screens */

@media (max-width: 768px) {
  .overlay-section-text-only .overlay-section-text {
    font-size: 0.9rem;
  }
}

/* Extra small screens */

@media (max-width: 576px) {
  .overlay-section-text-only .overlay-section-text {
    font-size: 0.8rem;
  }
}

