html{
    height:100%;
}

body{
    background-image: url("/giphyrickroll.gif");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    overflow: hidden;
}

h2{
    font-size:800%;
    font-family: 'League Spartan';
    user-select: none;
    position: fixed;
    text-align: center;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    margin:0;
    color:white;
    animation: rainbowanim 2s infinite;
    -webkit-text-stroke: black 5px;
}

@keyframes rainbowanim {
    0%{
        color:red;
    }
    16.6%{
        color:rgb(255,150,0);
    }
    33.2%{
        color:yellow;
    }
    49.8%{
        color:lime;
    }
    66.4%{
        color:rgb(0,80,255);
    }
    83%{
        color:rgb(150,0,255);
    }
    100%{
        color:red;
    }
}