.classiccolors {
    /* Create six horizontal stripes from top to bottom */
    background: linear-gradient(
        to bottom,
        /* Top (Green) */
        #61bb46 0%,
        #61bb46 16.666%,
        /* Yellow */
        #fdb827 16.666%,
        #fdb827 33.333%,
        /* Orange */
        #f5821f 33.333%,
        #f5821f 50%,
        /* Red */
        #e03a3e 50%,
        #e03a3e 66.666%,
        /* Purple */
        #963d97 66.666%,
        #963d97 83.333%,
        /* Blue */
        #009ddc 83.333%,
        #009ddc 100%
    );
}