@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800&display=swap');
*{
    box-sizing: border-box
}
body{
    color:#262626;
    font-size: 25px;
    font-family: 'Montserrat', sans-serif;
}

div {
    margin: 5px;
}
.news-wrapper{
    padding:30px;
    display:flex;
    align-items:center
    
}
.news{
    height:50px;
    overflow:hidden;
}
.news > div span{
    padding: 5px 15px;
    height:50px;
    margin-bottom:30px;
    display:block;
    font-style: oblique;
}
.news div:first-child{
    animation: slide 7s linear infinite;
}
@keyframes slide{
    0%{margin-top: -240px}
    5%{margin-top: -160px}
    35%{margin-top: -160px}
    40%{margin-top: -80px}
    65%{margin-top: -80px}
    70%{margin-top: 0}
    99.9%{margin-top: 0}
    100%{margin-top: -240px}
}

h3{
    padding: 15px;
    background: #c00;
    color: #fff;
    font-weight: 800;
    font-size: 30px;
    font-style: oblique;
}