.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    color: black;
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    z-index: 1001; /* Higher than the gif */
}

/* Secondary stylesheet for mobile GIF */

   @media (max-width: 768px) {

       #mobile-fullscreen-gif {

           display: flex;

           align-items: center;

           justify-content: center;

           position: fixed;

           top: 0;

           left: 0;

           width: 100%;

           height: 100%;

           background: rgba(0, 0, 0, 0.8); /* Optional: add a background overlay */

           padding: 0;

           margin: 0;

           z-index: 1000;

       }



       #mobile-fullscreen-gif img {

           width: 100vw; /* Make the image fill the viewport width */

           height: 100vh; /* Make the image fill the viewport height */

           object-fit: contain; /* Ensure the entire image is contained within the viewport */

           object-position: center; /* Center the image within the viewport */

           margin: 0; /* Remove any default margin */

           padding: 0; /* Remove any default padding */

           display: block; /* Ensure block-level so no additional spacing/margins */

       }

   }



   /* Desktop styles */

   @media (min-width: 769px) {

       #mobile-fullscreen-gif {

           display: none !important;

       }

   }



.hidden {
    display: none !important;
}
