
        
        .box {
            padding: 20px 40px;
            font-size: 32px;
            font-weight: bold;
            color: #00ff99;
            text-transform: uppercase;
            display: inline-block;
            text-align: center;
            position: relative;
            font-family: Arial, sans-serif;
            letter-spacing: 2px;
            background: rgba(0, 0, 0, 0.2);
            border: 3px solid #00ff99;
            border-radius: 15px;
            box-shadow: 0 0 15px #00ff99, 0 0 30px #00ff99, 0 0 45px #00ff99;
            animation: glow 1.5s infinite alternate;
        }
        @keyframes glow {
            0% {
                box-shadow: 0 0 15px #00ff99, 0 0 30px #00ff99, 0 0 45px #00ff99;
            }
            100% {
                box-shadow: 0 0 25px #00ff99, 0 0 50px #00ff99, 0 0 75px #00ff99;
            }
        }
        /* .box::before, .box::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 3px solid #00ff99;
            border-radius: 5px;
        }
        .box::before {
            top: -10px;
            left: -10px;
            border-right: none;
            border-bottom: none;
        }
        .box::after {
            bottom: -10px;
            right: -10px;
            border-left: none;
            border-top: none;
        } */
