.demo{ background:#6f1b1b; }
.text-effect{
color: #fff;
font-family: "Crete Round", serif;
font-size: 100px;
font-weight: 400;
text-align: center;
text-transform: uppercase;
animation: animate 1s ease-in infinite alternate;
}
@keyframes animate {
0% {
filter: blur(0px);
transform: skew(0deg);
}
100% {
filter: blur(3px);
transform: skew(-4deg);
}
}
@media only screen and (max-width: 990px){
.text-effect{ font-size: 70px; }
}
@media only screen and (max-width: 767px){
.text-effect{ font-size: 60px; }
}
@media only screen and (max-width: 576px){
.text-effect{ font-size: 35px; }
}