body{
//	perspective: 2000px;
/*	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;*/
}
.wrapper{
	width: 1000px;
	height: 700px;
    transform: rotateX(75deg) rotateY(0deg) rotateZ(10deg);
    transform-style: preserve-3d;
	box-sizing: border-box;
	border: 1px solid black;	
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.box3d{
	transform: rotateZ(45deg);
}
.box3d > * > *{
	display: flex; 
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;	
	
}
.box3d > * > *{
	background-position: center center;
	background-size: cover;
//	background-image: url('images/ironman.jpg');
}
.sideInscription{
	background-color: white;
}
.box3dSide{
	z-index: 1;
}
.box3d{
	animation-name: box3dAnim;
	animation-duration: 10s;
	animation-fill-mode: both;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
@keyframes box3dAnim{
	from{
		transform: rotateZ(0);
	}to{
		transform: rotateZ(360deg);
	}
}




