/* pink-overlay.css */

/* CSS for the pink transparent overlay */
.pink-overlay {
    background: rgba(255, 105, 180, 0.4); /* pink with 40% transparency */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10; /* Ensure it is above other elements */
}
.pink-overlay h1 {
    color: white;
    font-size: 2em;
    font-family: Arial, sans-serif; /* Example font family */
    text-shadow: 0 0 0.40em #d40ecb; /* Example text shadow */
}
