Learn how to combine blend modes with 3D transforms to create depth and dimension.
.container {
perspective: 1000px;
}
.blend-layer {
mix-blend-mode: multiply;
transform: rotateY(45deg) translateZ(20px);
transform-style: preserve-3d;
}
/* 3D transforms work with blend modes */
/* Creates depth and dimension */