.container3dwer2 {
				width: 200px;
				height: 200px;
				display: inline-block;
				margin: 50px;
				text-align: center;
				perspective: 1000px;     /* Jak daleko ja jako oglądająca mam być odsunieta od tego obiektu, aby zobaczyć go z perspektywy 3d a nie 2d  */
				position: relative;
				}
			
			.box3dwer2 {
				transform-style: preserve-3d; /* Obiekt w kontenerze musi miec styl transformacji 3d */
				transition: 1s;
				position: absolute;
				width: 100%;
				height: 100%;
				transform-origin: 100% 50%;
			}
			
			.box3d-2 {
				backface-visibility: hidden;
				position: absolute;
				width: 100%;
				height: 100%;
				color: white;
				font-size: 30px;
				text-align: center;
				line-height: 200px;
			}
			
			.front-2 {
				background-color: red;
				
			}
			
			.back-2 {
				background-color: blue;
				transform: rotateY(180deg);
			}
			
			.box3dwer2:hover {
				transform: translate(-100%) rotateY(180deg);
			}