body > #root > div {
	height: 100vh;
}
.pb-1 {
	padding-bottom: 1rem !important;
}
.pb-2 {
	padding-bottom: 2rem !important;
}
.pb-3 {
	padding-bottom: 3rem !important;
}

.test {
	color: red !important;
}
.scrollingText {
	width: 200%;
	/* white-space: nowrap; */
	overflow: hidden;
	animation: scroll 10s linear infinite;
}

.scrollingText:hover {
	animation-play-state: paused;
}

@keyframes scroll {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}
