.fade-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.no-fade-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.fade-button img {
    width: 200px; /* Adjust the size as needed */
    height: auto;
    animation: fade 2s infinite;
}

.no-fade-button img {
    width: 200px; /* Adjust the size as needed */
    height: auto;
    animation: nofade 2s infinite;
}

@keyframes nofade {
    0% { opacity: 1; }
    50% { opacity: 1 } /* Adjust the fade-out level */
    100% { opacity: 1; }
}

@keyframes fade {
    0% { opacity: 1; }
    50% { opacity: 0.3; } /* Adjust the fade-out level */
    100% { opacity: 1; }
}
