html,
        body {
            margin: 0 0;
            padding: 0 0;
            text-align: center;
            font-size: 0;
            height: 100%;
            width: 100%;
        }
    
        #gradient-rotate {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
        }
    
        #trianglify-overlay {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
        }
    
        #color-stop-1 {
            -webkit-animation: change-color-1 12s ease-in-out infinite alternate;
            animation: change-color-1 12s ease-in-out infinite alternate
        }
    
        #color-stop-2 {
            -webkit-animation: change-color-2 12s ease-in-out infinite alternate;
            animation: change-color-2 12s ease-in-out infinite alternate
        }
    
        #color-stop-3 {
            -webkit-animation: change-color-3 12s ease-in-out infinite alternate;
            animation: change-color-3 12s ease-in-out infinite alternate
        }
    
        @keyframes change-color-1 {
            0% {
                stop-color: #22C8F6
            }
    
            25% {
                stop-color: #ff0
            }
    
            50% {
                stop-color: #00ffcb
            }
    
            75% {
                stop-color: #70ff00
            }
        }
    
        @keyframes change-color-2 {
            0% {
                stop-color: #20C498
            }
    
            25% {
                stop-color: #ff00ad
            }
    
            350% {
                stop-color: #d480ff
            }
    
            75% {
                stop-color: #ff9200
            }
        }
    
        @keyframes change-color-3 {
            0% {
                stop-color: #189932
            }
    
            25% {
                stop-color: #c300cb
            }
    
            50% {
                stop-color: #5600d4
            }
    
            75% {
                stop-color: #ff46dc
            }
        }