body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    background: #2f2f2f; /* Set background color to #2f2f2f */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    cursor: pointer;
}

.overlay-text p {
    color: white;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: blur(5px); /* Initial blur applied */
    transition: filter 0.5s ease; /* Smooth transition for blur removal */
}

.centered-text {
    position: relative;
    text-align: center;
    z-index: 3;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    visibility: hidden; /* Initially hidden */
}

.centered-text p {
    margin: 0;
    font-size: 1rem; /* Smaller font size */
    padding: 0.3rem 0.6rem;
    background-color: transparent; /* Transparent background */
    border-radius: 5px;
}
