@charset "UTF-8";

#scroll-container {
/* 	border: 1px solid black; */
	height: 10rem;
	margin-top: 2rem;
	overflow: hidden;
	display: flex;
	justify-content: center;
}

#scroll-text {
	width: 43rem;	
  	height: 100%;
  	line-height: 2.0;
	transform: translateY(100%);
	animation: scrolling 8s linear infinite;
}

@keyframes scrolling {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(-100%);
	}
}
