STYLE typetextcss
body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.image-container {
  position: relative;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: ffffff; /* Set text color */
  font-size: 40px; /* Adjust font size as needed */
  font-family: 'Arial', sans-serif; /* Choose a suitable font-family */
  font-weight: bold; /* Adjust font weight if necessary */
}