.wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("./assets/images/bg.webp") center/cover no-repeat;
  overflow: hidden;
}

.app {
  display: block;
  width: 100%;
  height: 100vh;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.content {
  position: relative;
  height: 100%;
  z-index: 2;
}

.girl__item {
  position: absolute;
  bottom: 0;
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

.girl__img {
  display: block;
  width: 100%;
  height: auto;
}

.girl1 {
  left: 8%;
  max-width: 22vw;
}
.girl2 {
  left: 35%;
  max-width: 25vw;
}
.girl3 {
  left: 67%;
  max-width: 20.5vw;
}

.girl1:hover {
  background: url("./assets/images/decor1X2.webp") center no-repeat;
  background-size: contain;
}

.girl2:hover {
  background: url("./assets/images/decor2X2.webp") center no-repeat;
  background-size: contain;
}

.girl3:hover {
  background: url("./assets/images/decor3X2.webp") center no-repeat;
  background-size: contain;
}

.girl__item:hover {
  transform: scale(1.08);
  z-index: 3;
}

.wrapper.dark .overlay {
  opacity: 1;
}

.wrapper.dark .girl__item {
  filter: brightness(0.4);
}

.wrapper.dark .girl__item.active {
  filter: brightness(1);
}

.title__container {
  width: 50vw;
  height: 10vh;
  background: url("./assets/images/titleX2.webp") center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.2);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

@media (max-width: 2560px) and (max-height: 1440px) {
  .girl1 {
    left: 3%;
    max-width: 30vw;
  }

  .girl2 {
    left: 31%;
    max-width: 35.5vw;
  }

  .girl3 {
    left: 67%;
    max-width: 29vw;
  }
}

@media (max-width: 2560px) and (max-height: 1080px) {
  .girl1 {
    left: 10%;
    max-width: 22vw;
  }

  .girl2 {
    left: 37%;
    max-width: 25vw;
  }

  .girl3 {
    left: 68%;
    max-width: 20.5vw;
  }
}

@media (max-width: 1920px) {
  .girl1 {
    left: 2%;
    max-width: 31vw;
  }

  .girl2 {
    left: 31%;
    max-width: 35vw;
  }

  .girl3 {
    left: 67%;
    max-width: 29vw;
  }
}

@media (max-height: 749px) {
  .girl1 {
    max-width: 29vw;
  }

  .girl2 {
    max-width: 34vw;
  }

  .girl3 {
    max-width: 27vw;
  }
}
