body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  overflow: hidden; /* Prevents scrolling */
}

.overlay3 {
  position: fixed; /* Fixes the overlay to the entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Slightly transparent black */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensures overlay stays on top of other content */
}

.text-container {
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 600px;
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: bold;
}

p {
  font-size: 18px;
  line-height: 1.6;
}
