*{
    font-family: 'Courier New', Courier, monospace;
}

body{
    background: linear-gradient(to right, #aa41ff, #592bff);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1{
    text-align: center;
    color: blue;
    animation: colorchange 5s infinite;
}


@keyframes colorchange{
    0%{
        color: blue;
    }
    25%{
        color: red;
    }
    50%{
        color: green;
    }
    75%{
        color: yellow;
    }
    100%{
        color: blue;
    }
}