/* 
.vs h1{
    color: black;
    font-size: 30px;
    font-weight: bold;
    font-family: monospace;
    text-transform: uppercase;
    text-align: center;
    font-style: italic;
}

.vs h1{
    background: linear-gradient(to right, rgb(255, 255, 255), hsl(0, 0%, 100%) 10%, rgb(5, 5, 5) 20%);
    animation: shine 15s infinite linear;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes shine{
    0%{
        background-position: 0;
    }
    60%{
        background-position: 600px;
    }
    100%{
        background-position: 600px;
    }
} */



.vs h1{
    text-transform: uppercase;
    background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    /* #fff800 45%, */
    #ff1361 67%,
    /* #231557 80%, */
    #fff800 100%
    );
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2.5s linear infinite;
    font-size: 3rem !important;
    font-weight: 800;
    line-height: 80px;
    font-style: italic;
}

@keyframes textclip {
to {
    background-position: 200% center;
}
}

