selector{
mask: url('https://portfolio.gustavocampelo.com.br/rex/wp-content/uploads/2025/05/linhas0vai.svg');
mask-position: center;
mask-size: contain;
mask-repeat: no-repeat;
-webkit-mask: url('https://portfolio.gustavocampelo.com.br/rex/wp-content/uploads/2025/05/linhas0vai.svg');
-webkit-mask-position: center;
-webkit-mask-size: contain;
-webkit-mask-repeat: no-repeat;
}
selector:before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 20px;
height: 100%;
filter: blur(10px);
background: #51e1f7;
animation: fluxo 8s linear infinite;
}
@keyframes fluxo {
0% {
transform: translateX(0vw);
}
100% {
transform: translateX(100vw);
}
}