@keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fade-text {
  animation: fade 4s infinite;
}

.marquee-container {
  font-family: "Arial Black", sans-serif;
  border: 1px solid #ffffff;
  margin: 0;
  padding: 0;
  background-color: #0062ff;
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  animation: marqueeAnimation 10s linear infinite;
  font-size: 25px;
}

@keyframes marqueeAnimation {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
