.containerse {
    position: relative;
}

.instagram-logo {
    position: fixed;
    top: 70%;
    left: 95.7%;
    transform: translate(-50%, -50%);
    width: 60px; /* Adjust size as needed */
    height: auto;
    z-index: 1;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
  .instagram-logo {
    animation: bounce 1s ease-in-out infinite;
  }

@media screen and (max-width: 768px) {
    .instagram-logo {
        position: fixed;
        top: 70%;
        left: 95%;
        transform: translate(-50%, -50%);
        width: 50px; /* Adjust size as needed */
        height: auto;
        z-index: 1;
    }
    
  }
  
  @media screen and (max-width: 480px) {
    .instagram-logo {
        position: fixed;
        top: 70%;
        left: 83.2%;
        transform: translate(-50%, -50%);
        width: 60px; /* Adjust size as needed */
        height: auto;
        z-index: 1;
    }
    
   
  } 

  @media screen and (max-width: 320px) {
    .instagram-logo {
        position: fixed;
        top: 70%;
        left: 9.7%;
        transform: translate(-50%, -50%);
        width: 60px; /* Adjust size as needed */
        height: auto;
        z-index: 1;
    }
    
   
  } 