html {
display: flex;
align-items: center;
height: 100%;
background: black;
}
.container {
font: bold 6vmax/.8 KHAND, Open Sans, Impact;
background: black;
color: white;
mix-blend-mode: multiply;
}
@keyframes text-fill {
to {
background-size: 100% 100%;
}
}
body {
margin: auto;
background: linear-gradient(crimson, crimson) turquoise no-repeat 0 0;
background-size: 0 100%;
animation: text-fill linear infinite;
animation-duration: 20s;
}