/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 18 2025 | 10:38:22 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.scroll-text {
  opacity: 0;
  transform: translateX(-50px); /* start slightly left */
  transition: all 0.8s ease-out;
}

.scroll-text.visible {
  opacity: 1;
  transform: translateX(0); /* slide into place */
}
