body {
	size: 100%;
	background-color: #5123c3;
}
hr {
	color: white;
	height: 2px;
	width: 10vw;
	margin: auto;
	margin-bottom: 3%;
}
.container-fluid {
	overflow: hidden;
	display: flex;
	width: 100%;
}
.txt {
	white-space: nowrap;
	font-size: 10vh;
	animation: scrollTxt 10s linear infinite;
}
@keyframes scrollTxt {
	100% {
		transform: translate(100%, 0);
	}
	100% {
		transform: translate(-100%, 0);
	}
}

.logo {
	display: block;
	width: auto;
	height: auto;
	max-width: 250px;
	max-height: auto;
}
@media (orientation: landscape) {
	.logo {
		width: 15%;
		height: auto;
	}
	.txt {
		font-size: 5vw;
	}
}
