﻿.news-ticker-container {
    overflow: hidden;
    height: 200px; /* Adjust height as needed */
    position: relative;
}

.news-ticker {
    display: flex;
    flex-direction: column;
    animation: scrollUp 10s linear infinite; /* Adjust animation duration and timing as needed */
}

    .news-ticker li {
        margin-bottom: 10px; /* Adjust spacing between news items */
        white-space: nowrap;
    }

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%); /* Adjust scroll distance based on content height */
    }
}
body {
}
