#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000; /* Ensure the overlay is on top of other content */
}

/* Style the "Click ME!" text */
#clickMeText {
    font-size: 24px;
    color: white;
}

/* Hide the website content initially */
.hidden {
    display: none;
}