/* 
.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( -225deg,#22815e 0%,#006a43 29%,#f89b00 67%,#243328 100% );
    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,#22815e 0%,#006a43 29%,#f89b00 67%,#243328 100% ) !important;
    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;
}
}

