body {
    overflow: hidden;
}

#informeowtion {
    font-size: 50px;
    font-family: "Comic Sans";
    color: #ff69b4;
    position: absolute;
    width: 100%;
    text-align: center;
    font-weight: bold;
    top: 300px;
    -webkit-animation: spin 10s infinite linear;
    -moz-animation: spin 10s infinite linear;
    -o-animation: spin 10s infinite linear;
    -ms-animation: spin 10s infinite linear;
    animation: spin 10s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotateZ(0deg);
        filter: hue-rotate(0deg);
    }

    100% {
        transform: rotateZ(360deg);
        filter: hue-rotate(360deg);
    }
}
