Retro Glow Button

🌐 Retro Glow Button


        
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Retro Glow Button</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background: #2b2b2b; font-family: 'Poppins', sans-serif; } .retro-button { padding: 15px 50px; font-size: 18px; font-weight: bold; color: #000; text-transform: uppercase; background: linear-gradient(45deg, #f40612, #ffd700, #10d780); border: none; border-radius: 50px; position: relative; cursor: pointer; overflow: hidden; box-shadow: 0 0 15px rgba(255, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.5); transition: transform 0.3s ease, box-shadow 0.3s ease; } .retro-button:hover { transform: translateY(-5px); box-shadow: 0 5px 20px rgba(255, 0, 0, 0.7), 0 5px 40px rgba(255, 215, 0, 0.7); } .retro-button:active { transform: translateY(2px); } </style> </head> <body> <button class="retro-button">Retro Glow</button> </body> </html>

🔍 Output Preview