body {
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	overflow: hidden;
}

#container {
	position: relative;
	width: 600px;
	height: 315px;
	margin: 40px auto;
	perspective: 800px;
}

.piece {
	position: absolute;
	width: 60px;
	height: 31.5px;
	background-size: 600px 315px;
	transition: transform 0.8s ease, background-image 0.4s ease;
	will-change: transform;
}

#finalImg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	objectFit: cover;
	opacity: 0;
	transition: opacity 2s ease;
}