
/* Add this to your CSS file */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    /*display: none; -- Hide overlay by default */
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.popup {
    background-color: white;
    padding: 5px;
    border-radius: 5px;
    position: relative;
}

.close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: larger;
    font-weight: bolder;
    color: white;
    cursor: pointer;
}

.imagesection {
    max-width: 800px; 
    margin-top: 60px;
}