CSS3 Glow
Setting up a glow and testing transition keyframe effects
HTML
<p class="blur glow animated flash infinite">EVENTPYROTECHNIK <br> SCHERR</p>
CSS
body {
background:#000;
font-family: 'Varela Round', sans-serif;
}
p {
color:#fff;
text-align:left;
font-size:50px;
font-weight:thin;
}
.glow {
text-shadow:
0 0 10px rgba(255, 255, 255, 0.8),
0 0 20px rgba(255, 255, 255, 0.8),
0 0 22px rgba(255, 255, 255, 0.8),
0 0 40px rgba(38, 175, 134, 0.8),
0 0 6px rgba(38, 175, 134, 0.8),
0 0 80px rgba(38, 175, 134, 0.99),
0 0 100px rgba(38, 175, 134, 0.99),
0 0 140px rgba(38, 175, 134, 0.99)
}