@charset "iso-8859-1";

:root {
	--cube-width:280px;
	--cube-half:140px;
}

.myCubeContainer {
	width: 280px;
	height: 280px;
	position: relative;
	perspective: 1200px;
	-webkit-pperspective: 1200px;
	margin:60px;
}



.myCube {
	width: 100%;
	height: 100%;
	position: absolute;
	transform-style: preserve-3d;
	-moz-transition: all 4000ms ease-out;
	-webkit-transition: all 4000ms ease-out;
	-o-transition: all 4000ms ease-out;
	transition: all 4000ms ease-out;
}

.myCubeFace {
	margin: 0;
	width: 280px;
	height: 280px;
	display: block;
	position: absolute;
	padding:0px;
	margin:0px;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	-webkit-box-shadow: inset 0px 0px 15px 4px rgba(0,0,0,0.8);
	-moz-box-shadow: inset 0px 0px 15px 4px rgba(0,0,0,0.8);
	box-shadow: inset 0px 0px 15px 4px rgba(0,0,0,0.8);
}

.myCubeFaceEffect {
	margin: 0;
	width: 280px;
	height: 280px;
	display: block;
	position: absolute;
	padding:10px;
	margin:0px;
	color:#000000;
	text-shadow: 0px 0px 5px rgba(255, 255, 255, 1);
	text-align:justify;
	font-family: 'Ubuntu', sans-serif;
	font-size:8pt;
	opacity:1;
}

.myCubeFront  { transform: rotateY(   0deg ) translateZ( 140px); }
.myCubeBack   { transform: rotateX( 180deg ) translateZ( 140px); }
.myCubeRight  { transform: rotateY(  90deg ) translateZ( 140px); }
.myCubeLeft   { transform: rotateY( -90deg ) translateZ( 140px); }
.myCubeTop    { transform: rotateX(  90deg ) translateZ( 140px); }
.myCubeBottom { transform: rotateX( -90deg ) translateZ( 140px); }

