
.rotating-phrase {
  display: none;
}

/* Define the keyframes for the fade in/out animation */
@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Apply the animation to rotating-phrase elements */
/* .rotating-phrase.animated {
  animation: fadeInOut var(--rotating-phrase-duration) infinite; /* Adjust the duration as needed */
/* } */
