<style>
body {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: navajowhite;
}

.box {
	display: flex;
}

.box .inner {
	width: 1200px;
	height: 100px;
	line-height: 100px;
	font-size: 4em;
	font-family: sans-serif;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
}

.box .inner:first-child {
	background-color: indianred;
	color: darkred;
	transform-origin: right;
	transform: perspective(100px) rotateY(-15deg);
}

.box .inner:last-child {
	background-color: lightcoral;
	color: antiquewhite;
	transform-origin: left;
	transform: perspective(100px) rotateY(15deg);
}

.box .inner span {
	position: absolute;
	animation: marquee 10s linear infinite;
}

.box .inner:first-child span {
	animation-delay: 12.5s;
	left: -100%;
}

@keyframes marquee {
	from {
		left: 60%;
	}

	to {
		left: -100%;
	}
}

<body>
@import url('https://fonts.googleapis.com/css?family=Ubuntu');

body {
  background-color: #5a995e;
}
<body>
.shadow {
	margin: 40px auto;
	font-family: 'Ubuntu', sans-serif;
	font-size: 100px;
	font-weight: bold;
	color: #121212;
	text-align: center;
	letter-spacing: 5px;
	text-shadow: 2px 7px 5px rgba(0,0,0,0.3), 
	  0px -4px 10px rgba(255,255,255,0.3);
  }
  
</style>