		#content.blurred {
    filter: blur(2px); /* Applies blur effect */
    pointer-events: none; /* Disable interactions with the background */
}
			  .popup {
       
			position: fixed; /* Ensures the popup is positioned relative to the viewport */
    top: 50%; /* Centers vertically */
    left: 50%; /* Centers horizontally */
    transform: translate(-50%, -50%); /* Adjusts for the popup's dimensions */
    z-index: 1000; /* Ensures the popup is above other elements */
   
			background-color: white; /* Background for visibility */
    padding: 20px; /* Adds some padding */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a shadow for styling */
    border-radius: 8px; /* Optional: rounded corners */
			justify-content:center;
			align-items:center;

        }
			
			.popup.hidden {
			display:none;
			}
        .popup-content {
            background: #fff;
            padding: 20px;
            border-radius: 5px;
            text-align: left;
			border-left:10px solid #00a4e3;
        }

		.popup .main-line {
		font-size:clamp(1.0rem, 1vw + 1rem, 1.6rem);
		color:#002a5B;
		font-weight:bold;
		}
<!-- 			.closer {
			 display: block; 
        float: right; 
        position: relative; 
        top: -20px; 
        right: -20px; 
        z-index: 99999; 
        width: 40px; 
        height: 40px; 
        background-color: #f3f3f3; 
        border-radius: 50%; 
        text-align: center; 
        line-height: 40px; 
        border: #bfc3ca solid 1px;
        cursor: pointer; /* Add this to make it clear it's clickable */
			} -->
			/* Style for the close button */
#closePopup {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    border: none;
    outline: none;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 99999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; /* Smooth transition */
}

/* Hover effect */
#closePopup:hover {
    background-color: #c0392b;
    transform: scale(1.1); /* Slightly increase size on hover */
}

/* Active click effect */
#closePopup:active {
    transform: scale(0.95); /* Slightly shrink when clicked */
}

/* Focus effect for accessibility */
#closePopup:focus {
    box-shadow: 0 0 5px 2px rgba(231, 76, 60, 0.7); /* Light red focus outline */
}