.collage__container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collage__container-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.collage-background__container {
  position: absolute;
  display: flex;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.collage-background__container svg {
  height: 80vh;
  fill: #ffed33;
  opacity: 0.3;
}

.collage-media__container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.collage-image {
  position: absolute;
  height: 40%;
  opacity: 0;
  filter: blur(5px) drop-shadow(0px 0px 15px rgba(0, 0, 0, 1));
  transition: all 1s;
  user-select: none;
  pointer-events: none;
}

.collage-image.visible {
  opacity: 1;
  filter: blur(0) drop-shadow(0px 0px 15px rgba(0, 0, 0, 1));
  transform: translate(0, 0);
}

.collage-image__top-left {
  top: 0;
  left: -15vw;
  height: 35%;
  transform: translate(-100%, -100%);
}

.collage-image__top-right {
  top: 0;
  right: -15vw;
  height: 30%;
  transform: translate(100%, -100%);
  transition-delay: 250ms;
}

.collage-image__bottom-left {
  bottom: 0;
  left: -45vw;
  transform: translate(-100%, 100%);
  transition-delay: 500ms;
}

.collage-image__bottom-right {
  bottom: 0;
  right: -25vw;
  transform: translate(100%, 100%);
  transition-delay: 750ms;
}

@media screen and (min-width: 400px) {
  .collage-image__top-left {
    left: -25vw;
  }
  .collage-image__top-right {
    right: -25vw;
  }
  .collage-image__bottom-left {
    left: -55vw;
  }
  .collage-image__bottom-right {
    right: -35vw;
  }
}

@media screen and (max-width: 400px) and (min-height: 800px) {
  .collage-image__top-left {
    height: 30%;
    left: -30vw;
  }
  .collage-image__top-right {
    right: -40vw;
  }
  .collage-image__bottom-left {
    left: -75vw;
  }
  .collage-image__bottom-right {
    right: -45vw;
  }
}

@media screen and (min-width: 500px) and (min-height: 700px) {
  .collage-image__top-left {
    left: -10vw;
  }
  .collage-image__top-right {
    right: -20vw;
  }
  .collage-image__bottom-left {
    left: -30vw;
  }
  .collage-image__bottom-right {
    right: -20vw;
  }
}

@media screen and (min-width: 600px) {
  .collage-image {
    height: 40%;
  }
  .collage-image__top-left {
    left: -10vw;
  }
  .collage-image__top-right {
    height: 35%;
    right: -20vw;
  }
  .collage-image__bottom-left {
    height: 45%;
    left: -25vw;
  }
  .collage-image__bottom-right {
    height: 45%;
    right: -15vw;
  }
}

@media screen and (min-width: 600px) {
  .collage-image__top-left {
    left: -20vw;
  }
  .collage-image__top-right {
    right: -25vw;
  }
  .collage-image__bottom-left {
    left: -35vw;
  }
  .collage-image__bottom-right {
    right: -25vw;
  }
}

@media screen and (min-width: 1025px) {
  .collage-background__container {
    transform: translateX(15vw);
  }
  .collage-media__container {
    transform: translateX(15vw);
  }
  .collage-image {
    height: 50%;
  }
  .collage-image__top-left {
    height: 45%;
    left: 0;
  }
  .collage-image__top-right {
    height: 40%;
    right: 0;
  }
  .collage-image__bottom-left {
    left: 0;
  }
  .collage-image__bottom-right {
    right: 0;
  }
}
