
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    z-index: 1;
    pointer-events: auto;
}

.container {
    position: relative;
    width: 80%;
    max-width: 600px;
    z-index: 1;
    pointer-events: auto;
}

.content {
    padding: 20px;
    background-color: #000;
    border: 4px solid #ff00ff;
    box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    pointer-events: auto;
}

h1 {
    font-size: 2.5rem; 
}

button {
    padding: 10px 20px;
    background-color: #ffffff;
    border: 2px solid #000;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    margin: 10px;
    font-size: 18px;
    transition: transform 0.3s, background-color 0.3s;
    z-index: 1;
    pointer-events: auto;
}

button:hover {
    background-color: #ff00ff;
    transform: scale(1.1);
    z-index: 1;
    pointer-events: auto;
}


.fade-out {
    opacity: 1;
}

.fade-in {
    opacity: 1;
}

.lightbulb-button {
    position: fixed;         /* Fix the position relative to the viewport */
    top: 30px;               /* 10px from the top of the page */
    right: 10px;             /* 10px from the right edge */
    transform: scale(2);     /* Reset the scale to 1 to ensure the button isn't too small */
    z-index: 22;             /* Ensure it is above other elements */
    pointer-events: auto;    /* Allow interaction with the button */
    padding: 10px;           /* Some padding around the image */
}

/* Optional: Style for the image inside the button */
.lightbulb-button img {
    width: 50px;             /* You can adjust this size */
    height: 50px;            /* Adjust the height as well */
    object-fit: contain;     /* Make sure the image scales properly */
}
/* Container to overlay the GIF */
.gif-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Ensure the overlay appears on top */
    display: flex;
    justify-content: center;
    align-items: center; /* Center the GIF */
    opacity: 50%;
    pointer-events: none;
}

/* The GIF itself */
.gif-overlay img {
    width: 100vw;  /* 100% of the viewport width */
    height: 100vh; /* 100% of the viewport height */
    object-fit: cover; /* Ensures the GIF doesn’t get distorted */
    pointer-events: none; /* Allows clicks to pass through the GIF */
}