💌 📖
Skip to main content

Glowing Button

body {
margin: 0;
padding: 0;
background: transparent;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
}

.glow-button {
display: inline-block;
padding: 18px 45px;
font-size: 28px;
font-weight: bold;
text-decoration: none;
color: #ffffff;
background: linear-gradient(45deg, #6a00ff, #b84dff);
border: 3px solid #d18cff;
border-radius: 50px;
box-shadow:
0 0 10px #a64dff,
0 0 20px #a64dff,
0 0 40px #a64dff,
0 0 60px #cc99ff;
animation: pulseGlow 1s infinite alternate,
blinkText 0.8s infinite;
transition: transform 0.3s ease;
text-align: center;
}

.glow-button:hover {
transform: scale(1.08);
}

@keyframes pulseGlow {
from {
box-shadow:
0 0 8px #9933ff,
0 0 18px #9933ff,
0 0 35px #9933ff;
}
to {
box-shadow:
0 0 18px #cc66ff,
0 0 35px #cc66ff,
0 0 60px #e6b3ff,
0 0 80px #e6b3ff;
}
}

@keyframes blinkText {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}


💜 Wanna be my Next Sub? 💜

Alex

Author Alex

More posts by Alex

Leave a Reply