@import url('https://fonts.googleapis.com/css?family-Poppins:200,300,400,500,600,700,800,900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'poppins',sans-serif;
}
body
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #2f363e;
}
h1
{
    font-size: 4em;
    padding: 20px 0 50px;
    color: #00ff0a;
    text-shadow:0 0 10px #00ff0a,
    0 0 20px #00ff0a;
    animation: animateColor 8s linear infinite;
}
@keyframes animateColor
{
    0%
    {
        filter: hue-rotate(0deg);
    }
    100%
    {
        filter: hue-rotate(360deg);
    }
}
label
{
    font-size: 2em;
    padding: 20px 0 150px;
    color: #ff2972;
    text-shadow:0 0 10px #ff2972,
    0 0 20px #ff2972;
    animation: animateColor 8s linear infinite;
}
ul
{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;

}
ul li
{
    position: relative;
    list-style: none;
}
ul li a
{
    position: relative;
    font-size: 4em;
    text-decoration: none;
    line-height: 1em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
}
ul li a::before
{
    content: attr(data-text);
    position: absolute;
    color: var(--clr);
    width: 0;
    overflow:hidden;
    transition: 1s;
    border-right: 8px solid var(--clr) ;
    -webkit-text-stroke: 1px var(--clr);

}
ul li a:hover:before
{
    width: 100%;
    filter: drop-shadow(0 0 25px var(--clr));
}