/* Add custom CSS styles below */
   h2 {
    text-transform: uppercase;
    background-image: linear-gradient(-225deg, #000000 0, #0d4070 29%, #ff07076c 67%, #f4b251 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 5s linear infinite textclip;
    display: inline-block;
    font-weight: 800 bold;
}
@keyframes textclip {
    100% {
        background-position: 250% center
    }
}