@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@400;600&display=swap');
*{
box-sizing:border-box;

}
body{
color:fff;
font-family:'Montserrat',sans-serif;


}

#h3{
padding:15px;
border-radius:5px;
background:#c00;
color:rgb(254, 255, 255);
font-weight:100%;
font-size:20px;

}
.news-wrapper{
 background-color: rgb(5, 11, 26);
padding:5px;
display:flex;
align-items:center;
border-radius:5px;
color: azure;
}
.news1{

height:50px;
overflow:hidden;
}
.news1 > div span{
padding:5px 15px;
height:50px;
margin-bottom:30px;
display: block;
}
.news1 div:first-child{
    animation:slide 15s 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:0px;}
    99.99%{margin-top:0px;}
    100%{margin-top:-240px;}

}
