This is what the screen blend mode should do:
this is what my css does:
https://codepen.io/Thisisntme/pen/LYGypRz
* {
mix-blend-mode: screen;
}
body {
background: black;
mix-blend-mode: screen;
}
h1 {
font-family: "Work Sans", sans-serif;
font-weight: 400;
font-size: 12vw;
color: White;
mix-blend-mode: screen;
z-index: 1;
text-align: center;
text-shadow: 5px 10px 5px #FF0000, -5px 10px 5px #00FF00,5px -10px 5px #0000FF;
}
<h1>testing testing</h1>
what am I doing wrong?