@font-face {
	font-family: "Atletico";
	src: url("https://nagr.org/fonts/Atletico.otf") format("opentype");
}

.scrollTicker {
	font-family: Atletico;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 10;
}

.scrollTicker h2{
        white-space: nowrap;
        animation: marquee 35s linear infinite; 
}

@keyframes marquee {
    0%   { transform: translate(0%, 0); }
    100% { transform: translate(-427%, 0); }
}