.text-effect{
color: #651727;
font-family: 'Montserrat',sans-serif;
font-size: 100px;
font-weight: 900;
text-align: center;
text-transform: uppercase;
position: relative;
animation: animate 1.5s infinite alternate ease-in-out;
}
@keyframes animate {
from { text-shadow: 0 0 10px transparent; }
to { text-shadow: 0 28px 50px rgba(0, 0, 0, 0.8); }
}
@media only screen and (max-width: 767px){
.text-effect{ font-size: 65px; }
}
@media only screen and (max-width: 576px){
.text-effect{ font-size: 45px; }
}