

.main_question{
    text-transform: uppercase !important;

}



.header-second{
    text-transform: uppercase !important;
    animation-name: hue;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-play-state: running;

}


@keyframes hue {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
