.newsflash {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  padding: 15px;
  width: 58vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 30vh;
  background: black;
  z-index: 999;
  pointer-events: none;
  animation: pulseBox 3.2s forwards;
  color: gold;
  border-radius: 5%; 
  img {
    /* max-width: 150%; */
    max-height: 280px;
    margin: 10px 0;
  }
}
.news-date {
  font-size: clamp(15px, 1.5vw, 33px);
}

.newsflash .nf-alert {
  display: block;
  font-size: clamp(20px, 2.0vw, 44px);
  margin: 12px 0;
  width: 100%;
  text-align: center;
}

@keyframes pulseBox {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  12.5% {
    transform: translate(-50%, -50%) scale(1);
  }
  87.5% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(0);
  }
}
.fly-across {
  position: fixed;
  top: 20%;
  left: -20vw;
  width: 10vw;
  height: auto;
  z-index: 1000;
  animation: flyRight 3.5s linear forwards;
}

@keyframes flyRight {
  0% {
    left: -20vw;
  }
  100% {
    left: 110vw;
  }
}