.parallax-mobile {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.parallax-mobile .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.parallax-mobile .text-overlay {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: white;
  font-size: 32px;
  text-shadow: 1px 1px 2px #000;
  z-index: 2;
}
