/* Style for both titles */
.overlay_titles {
  position: absolute;
  top: 50%;
  left: 10%; /* Set the left offset to 10% to make the titles 80% wide */
  right: 10%; /* Set the right offset to 10% to make the titles 80% wide */
  transform: translateY(-50%);
  z-index: 1;
  text-align: center;
  width: 80%; /* Set the width to 80% */
  color: #fff;
}

/* Style for Title 1 (as h1) */
.overlay_title1 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px; /* Add a 20px gap between Title 1 and Title 2 */
}

/* Style for Title 2 */
.overlay_title2 {
  font-size: 30px;
  font-style: italic;
  opacity: 0.8;
}

/* Adjust styles for smaller screens (e.g., mobile devices) */
@media (max-width: 768px) {
  .overlay_titles {
    left: 5%; /* Reduce left offset on smaller screens */
    right: 5%; /* Reduce right offset on smaller screens */
    width: 90%; /* Increase width on smaller screens */
  }

  /* Adjust font size for Title 1 on smaller screens */
  .overlay_title1 {
    font-size: 24px;
  }

  /* Adjust font size for Title 2 on smaller screens */
  .overlay_title2 {
   
