.current-news{
    overflow:hidden;
    padding: 5px;
    font-size: 23px;
    font-weight: 600;
    overflow-x: hidden;
    max-height:70px;
    max-height:70px;
}
.news-list{
    overflow-x: hidden;
    animation: floatText 15s infinite linear;
}
.news{
    margin-left:20px;
}
.news-list:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}
@-webkit-keyframes floatText{
    from{
        transform: translateY(100%);
    }
    to {
        transform: translateY(-100%);
    }
}
@media only screen and (max-width: 600px) {
    .current-news{
        font-size:13px;
    }
}