﻿.info-box-inyourface {
    background: linear-gradient(135deg, #ff0066, #ffcc00);
    color: #000;
    font-weight: 900;
    padding: 20px 30px;
    margin: 20px auto;
    border: 5px solid #00ffff;
    border-radius: 10px;
    box-shadow: 0 0 20px #ff0066, 0 0 40px #ffcc00, inset 0 0 15px #00ffff;
    letter-spacing: 1px;
    animation: pulseGlow 1.2s infinite alternate ease-in-out;
    max-width: 800px;
}
    .info-box-inyourface a {color:blue !important }


    @keyframes pulseGlow {
        from {
        box-shadow: 0 0 20px #ff0066, 0 0 40px #ffcc00, inset 0 0 15px #00ffff;
    }

    to {
        box-shadow: 0 0 40px #ff0066, 0 0 60px #ffcc00, inset 0 0 25px #00ffff;
    }
}
