.demo{ background-color: #3c6382; }
.text-effect{
color: #fff;
font-family: 'Cabin Sketch', cursive;
font-size: 100px;
font-weight: 700;
letter-spacing: 1px;
text-align: center;
animation: blink 1s linear infinite;
}
@keyframes blink{
0%{ opacity: 0; }
50%{ opacity: .5; }
100%{ opacity: 1; }
}
@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; }
}