.zebrita-newsletter {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13pt;
  color: #1e10e6;
  font-family: 'Caveat', 'Great Vibes', 'Brush Script MT', cursive;
  text-align: center;
  animation: fadeInOut 14s infinite ease-in-out;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
