.gif-container {
    position: fixed;
    bottom: -20px;
    right: 10px;
    z-index: 1;
    pointer-events: none; /* Pass clicks through the container */
  }
  
  .gif-container:hover {
    opacity: 0.5; /* Optional, if you still want a hover effect */
  }
  
  .gif-container img {
    width: 450px;
    height: auto;
    pointer-events: none; /* Ensure the image also ignores mouse events */
    transition: opacity 0.5s ease;
  }
  
.gif-container2 {
  position: fixed;
  margin-top: 10%;
  /* right: 10px; */
  z-index: -5;
  opacity: 0.5;
}

.gif-container2 img {
  width: 1000px;
  height: auto;
  /* pointer-events: none; */
}
/* 
