body{
    background-image: url("https://compass-ssl.xbox.com/assets/7e/16/7e16ab6a-ced9-4840-b2d1-4f8e7e769c9d.jpg?n=Minecraft_Page-Hero-1084_2019-Keyart_1920x880_03.jpg");
    background-repeat: no-repeat;
}

h1{
    animation-name: example;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

h3{
    animation-name: example;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

h5{
    animation-name: example;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

a{
    animation-name: example1;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

@keyframes example {
    0%{color: red;}
    7%{color: orangered}
    14%{color: orange}
    21%{color: #ffc400}
    28%{color: yellow;}
    32%{color: yellowgreen}
    42%{color: green}
    49%{color: #00ffdd}
    56%{color: lightblue}
    70%{color: blue}
    84%{color: purple}
    91%{color: #ff00d4}
    100%{color: red}
}

@keyframes example1 {
    0%{color: green}
    7%{color: #00ffdd}
    14%{color: lightblue}
    21%{color: blue}
    28%{color: purple}
    32%{color: #ff00d4}
    42%{color: red}
    49%{color: orangered}
    56%{color: orange}
    70%{color: #ffc400}
    84%{color: yellow;}
    91%{color: yellowgreen}
    100%{color: green}
}