<div class="g-container">
<p>Magic Text</p>
</div>
@import url("https://fonts.googleapis.com/css2?family=Reggae+One&display=swap");
html,
body {
width: 100%;
height: 100%;
display: flex;
font-family: "Reggae One", cursive;
background: #000;
}
.g-container {
margin: auto;
}
p {
position: relative;
font-size: 12vw;
line-height: 16vw;
// color: #9a9acc;
overflow: hidden;
text-stroke: 3px #7272a5;
&::before {
content: " ";
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
background-image: linear-gradient(45deg, #ff269b, #2ab5f5, #ffbf00);
mix-blend-mode: multiply;
}
&::after {
content: "";
background: radial-gradient(circle, #fff, #000 50%);
background-size: 25% 25%;
position: absolute;
top: -100%;
left: -100%;
right: 0;
bottom: 0;
mix-blend-mode: color-dodge;
animation: mix 8s linear infinite;
}
}
@keyframes mix {
to {
transform: translate(50%, 50%);
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.