<style >
.hidden {
    display: none !important;
} 
#image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

    #image-container img {
        max-width: 100%;
        max-height: 80vh;
    }

/* CSS Animation for spin and bounce */
 
.one-bounce {
    animation: bounce 1s ease-in-out 1; /* Bounce once */
}
.spin-bounce {
    animation: spin 3s linear infinite, bounce 1s ease-in-out infinite;
}
.side-to-side {
    animation: sideToSide 1s ease-in-out    ;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0); /* No bounce */
    }

    50% {
        transform: translateY(-20px); /* Bounce up */
    }
}
@keyframes sideToSide {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20px);
    }
}

.side-to-side {
    animation: sideToSide 1s ease-in-out;
}
@keyframes sideToSide2 {
    0% {
        transform: translateX(0); /* Start at the initial position */
    }

    50% {
        transform: translateX(100px); /* Move 20px to the right */
    }

    100% {
        transform: translateX(0); /* Move back to the initial position */
    }
}
@keyframes bounce {
    0% {
        transform: translateY(0); /* Start at the initial position */
    }

    50% {
        transform: translateY(-20px); /* Move up by 20px */
    }

    100% {
        transform: translateY(0); /* Return to the initial position */
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.blink {
    animation: blink 3s infinite;
}
/* blink border */
/* const style = document.createElement('style');
style.textContent = ` */
@keyframes blink-border {
    0%

{
    border-color: #00CC66;
}

50% {
    border-color: transparent;
}

100% {
    border-color: #00CC66;
}

}

.blink-border {
    animation: blink-border 2s infinite;
}
.blink-image {
    animation: blink-image 2s infinite;
}
/*  `;  */
document.head.appendChild(style);
 
/* Style for the overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Style for the popup */
.popup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Style for the close button */
.close-btn {
    background: #004aae;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
}

    .close-btn:hover {
        background: #00397a;
    }

</style >
