/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
/* Define the keyframes for the flashing effect */
@keyframes flashing {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Create a CSS class to apply the flashing effect */
.flash-text {
  animation: flashing 1s linear infinite;
}
