body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.blurred-content {
    filter: blur(5px);
    pointer-events: none;
}

.overlay {
    position: fixed;
    top: 7vh;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Set a high z-index to stay on top */
}

.overlay-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 80%;
    max-width: 400px;
}

.overlay-content h2 {
    margin: 0 0 10px 0;
}

#subscribe-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#subscribe-btn:hover {
    background-color: #0056b3;
}
.small-text {
    font-size:10px; /* Adjust the size as needed */
    color: #666; /* Optional: Set the color */
}