html,
        body {
            margin: 0;
            padding: 0;
            overflow: hidden;
            background-image: linear-gradient(to bottom right, #857300, #470000);
            text-align: center;
        
        }
        
        canvas {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 0;
        }
        
        #loader {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1;
            background-image: linear-gradient(to bottom right, #857300, #470000);
            width: 100%;
            height: 100%;
        }
        
        #loader>#imgs {
            display: flex;
            position: absolute;
            top: 175px;
            width: 100%;
            justify-content: center;
        }
        
        #loader>#imgs>img {
            width: 500px;
            filter: invert(100%);
        }
        
        #loader-cont {
            background-image: linear-gradient(to bottom right, #857300, #470000);
            width: 500px;
            margin-left: -250px;
            height: 40px;
            border: solid rgb(75, 75, 75) 5px;
            transform: skewX(-30deg);
            position: absolute;
            top: 370px;
            padding: none;
            margin: none;
            left: 50%;
        }
        
        #loader-mid {
            position: absolute;
            background: rgb(255, 51, 0);
            height: 40px;
            animation: load 1s infinite;
        }
        
        #loader>h1 {
            position: absolute;
            width: 100%;
            text-align: center;
            top: 250px;
            font-size: 50px;
        }
        
        @keyframes load {
            0% {
                left: 0;
                width: 0px;
            }
            25% {
                width: 100%;
                left: 0px;
            }
            50% {
                left: 100%;
                width: 0px;
            }
            100% {
                left: 0;
                width: 0px;
            }
        }
        