.text-effect{
color: #000;
font-family: 'Acme', sans-serif;
font-size: 55px;
font-weight: bold;
text-align: center;
margin: 30px 0 0;
}
.text-effect span{
background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(213,213,213,1) 80%, rgba(0,0,0,3) 100%);
line-height: 75px;
width: 75px;
height: 75px;
border-radius: 50%;
text-shadow: 2px 2px 5px #777777;
box-shadow: 0 0 10px #fff;
display: inline-block;
}
.text-effect span:nth-child(1) { animation: wave 2s infinite; }
.text-effect span:nth-child(2) { animation: wave 2s infinite 200ms; }
.text-effect span:nth-child(3) { animation: wave 2s infinite 400ms; }
.text-effect span:nth-child(4) { animation: wave 2s infinite 600ms; }
.text-effect span:nth-child(5) { animation: wave 2s infinite 800ms; }
.text-effect span:nth-child(6) { animation: wave 2s infinite 1000ms; }
.text-effect span:nth-child(7) { animation: wave 2s infinite 1200ms; }
.text-effect span:nth-child(8) { animation: wave 2s infinite 1400ms; }
.text-effect span:nth-child(9) { animation: wave 2s infinite 1600ms; }
.text-effect span:nth-child(10){ animation: wave 2s infinite 1800ms; }
@keyframes wave{
0% { transform: translateY(0px) scale(1); }
50% { transform: translateY(-50px) scale(.75); }
51% { transform: translateY(-50px) scale(.75); }
100% { transform: translateY(0px) scale(1); }
}
@media only screen and (max-width: 990px){
.text-effect{ font-size: 45px; }
.text-effect span{
line-height: 60px;
height: 60px;
width: 60px;
}
}
@media only screen and (max-width: 767px){
.text-effect{ font-size: 35px; }
.text-effect span{
line-height: 50px;
height: 50px;
width: 50px;
}
}
@media only screen and (max-width: 576px){
.text-effect{ font-size: 25px; }
.text-effect span{
line-height: 40px;
height: 40px;
width: 40px;
}
}