HTML
<div class="neon-button_box">
<a href="#" class="neon-button">CLICK ME</a>
</div>
CSS
.neon-button_box {
margin: 50px auto;
width: 30%;
}
.neon-button {
display: inline-block;
background-color: #0f0;
color: #000;
font-weight: bold;
font-size: 1.5rem;
text-decoration: none;
padding: 16px 40px;
border-radius: 8px;
position: relative;
box-shadow: 0 0 10px #0f0, 0 0 20px #0f0;
transition: all 0.3s ease;
text-align: center;
width: 100%;
}
.neon-button:hover {
box-shadow: 0 0 20px #0f0, 0 0 40px #0f0;
transform: translateY(-2px);
}