body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.image-container {
  position: relative;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
}

.responsive-image {
  width: 100%;
  height: auto;
  display: block;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.text-overlay h1 {
  font-size: calc(2rem + 2vw);
  margin: 0;
}

.text-overlay p {
  font-size: calc(1.2rem + 1vw);
  margin-top: 10px;
}