
        #overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: none; /* Initially hidden */
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
 
        #popup {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            width: 300px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
 
        #popup h2 {
            margin-bottom: 20px;
        }
 
        .button {
            display: inline-block;
            padding: 10px 20px;
            margin: 10px;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
 
        .button-yes {
            background-color: #e74c3c;
            color: white;
        }
 
        .button-yes:hover {
            background-color: #c0392b;
        }
 
        .button-no {
            background-color: #2ecc71;
            color: white;
        }
 
        .button-no:hover {
            background-color: #27ae60;
        }
    

        
            Вы бот?
            Да
            Нет
        
    
 