body{
    margin:0;
    padding:0;
    box-sizing:border-box;
    display:flex;
    justify-content:center;
    align-items:center;
    width:100vw;
    height:100vh;
    overflow:hidden;
}
.text-gradient{
    font-size: 4em;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(to right,red,#0008ff);    color: transparent;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
}
::selection{
    color: white;
    background-color: darkorchid;
}
