Learn how to create complex compositions with multiple layers using different blend modes.
/* Base layer */
background: blue;
/* Multiple blend layers */
.layer1 { mix-blend-mode: multiply; }
.layer2 { mix-blend-mode: screen; }
.layer3 { mix-blend-mode: overlay; }
.layer4 { mix-blend-mode: hard-light; }
.layer5 { mix-blend-mode: difference; }
/* Each layer blends with all previous layers */