body {

}

#news2 {
	position:absolute;
	width:100vw;/*100%*/
	font-size:1.5vh;/*1.2em*/
	font-style:italic;
	text-align:justify;
	color:#63020c;
	box-sizing:border-box;
	padding-right:5vw;/*15px*/
	animation: marquee 25s linear infinite;
	overflow:hidden;
	hyphens: auto;
}

@keyframes marquee {
    0%   { top:   0.5vh }/*2%*/
    100% { top: -100vh }/*-200*/
}

#news2:hover {
    animation-play-state: paused;
}
