@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.headline {
    border: 1px solid black;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: linear-gradient(#116B08, #45BA25);
    overflow: hidden;
    opacity: 0;
}

.headline-wrapper {
    display: inline-block;
    white-space: nowrap;
    animation: 120s marquee linear infinite;
}

.headline-wrapper > * {
    color: white;
    font-size: 26px;
    font-weight: 400;
    text-shadow: 1px 0 #000, -1px 0 #000, 0 2px #000, 0 -2px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
    display: inline;
    margin: 0 2em;
}
