.text-effect{
color: #000;
font-family: 'Playfair Display', serif;
font-size: 100px;
font-weight: 700;
text-align: center;
}
.text-effect span{
display: inline-block;
animation: wobble 5s ease-in-out infinite;
}
@keyframes wobble{
from, to{
text-shadow: 5px 0 #999;
transform: perspective(500px) rotateY(-45deg);
}
50%{
text-shadow: -5px 0 #999;
transform: perspective(500px) rotateY(45deg);
}
}
@media only screen and (max-width: 990px){
.text-effect{ font-size: 80px; }
}
@media only screen and (max-width: 767px){
.text-effect{ font-size: 60px; }
}
@media only screen and (max-width: 576px){
.text-effect{ font-size: 45px; }
}