body {
    margin: 0;
    padding: 0;
  }
  
  .background {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    animation: fade-in-out 7s ease-in-out infinite;
  }
  
  .shape {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 100%;
    animation: bounce 1s ease-in-out infinite;
  }
  
  .images {
    position: absolute;
    top: 50%;
    left: 52.5%;
    transform: translate(-50%, -50%);
  }
  
  .bouncing-image-1 {
    position: absolute;
    width: 200px;
    height: 250px;
    animation: bounce-image 5s ease-in-out infinite;
    z-index: 2;
  }

  .moving-image {
    position: absolute;
    top: 47%;
    left: -60%;
    width: 50px;
    height: 50px;
    background-image: url('Poop-1.png');
    background-size: cover;
    animation: move-horizontally 10s linear infinite;
    z-index: 1;
  }
  
  @keyframes move-horizontally {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(100vw);
    }
  }

  
  @keyframes bounce {
    0% { top: 0; left: 0; }
    25% { top: 0; left: 75%; }
    50% { top: 75%; left: 75%; }
    75% { top: 75%; left: 0; }
    100% { top: 0; left: 0; }
  }
  
  @keyframes bounce-image {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
  }
  
  @keyframes fade-in-out {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
  }
  
  .shape:nth-child(1) {
    top: 25%;
    left: 25%;
    animation-delay: 2s;
  }
  
  .shape:nth-child(2) {
    top: 75%;
    left: 75%;
    animation-delay: 20s;
  }
  
  .shape:nth-child(3) {
    top: 50%;
    left: 25%;
    animation-delay: 30s;
  }
  
  .shape:nth-child(4) {
    top: 25%;
    left: 75%;
    animation-delay: 40s;
  }
  
  .shape:nth-child(5) {
    top: 75%;
    left: 25%;
    animation-delay: 50s;
  }
  
  .shape:nth-child(6) {
    top: 50%;
    left: 75%;
    animation-delay: 60s;
  }
  
  .shape:nth-child(7) {
    top: 25%;
    left: 50%;
    animation-delay: 70s;
  }
  
  .shape:nth-child(8) {
    top: 75%;
    left: 50%;
    animation-delay: 80s;
  }
  
  @media only screen and (max-width: 768px) {
    .shape {
      width: 25px;
      height: 25px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .shape {
      display: none;
    }
  }
  
  @media only screen and (max-width: 768px) {
    .bouncing-image {
      width: 75px;
    }
  }
  
  @media only screen and (max-width: 480px) {
    .bouncing-image {
      width: 50px;
    }
  }