<div class="container">
<div class="text">
<span style="--i:1">-</span>
<span style="--i:2">c</span>
<span style="--i:3">S</span>
<span style="--i:4">s</span>
<span style="--i:5">-</span>
<span style="--i:6" class="dot"></span>
<span style="--i:7">A</span>
<span style="--i:8">n</span>
<span style="--i:9">i</span>
<span style="--i:10">m</span>
<span style="--i:12">a</span>
<span style="--i:12">t</span>
<span style="--i:13">i</span>
<span style="--i:14">o</span>
<span style="--i:15">n</span>
<span style="--i:16" class="dot"></span>
<span style="--i:17">-</span>
<span style="--i:18">-</span>
<span style="--i:19">-</span>
<span style="--i:20">-</span>
</div>
</div>
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.container {
width: 100%;
min-height: 100vh;
position: relative;
display: flex;
justify-content: center;
align-items: center;
background-color: #001e6c;
}
.text span {
font-size: 60px;
padding: 0 10px;
text-transform: uppercase;
font-weight: 600;
color: #fff;
animation: zoomup 3s ease infinite;
animation-delay: calc(100ms * var(--i));
}
.dot {
display: block;
}
@keyframes zoomup {
0%,
100% {
color: #ffb703;
filter: blur(0.5px);
text-shadow: 0 0 10px #ffb703, 0 0 20px #ffb703, 0 0 30px #ffb703,
0 0 40px #ffb703, 0 0 50px #ffb703, 0 0 60px #ffb703;
}
50% {
filter: blur(0);
color: #fff;
text-shadow: none;
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.