body {
            background: #0b0d0f
        }
        
        #loader {
            display: block;
            width: 150px;
            height: 150px;
            left: 50%;
            position: absolute;
            margin-left: -75px;
            top: 50%;
            margin-top: -75px
        }
        
        .animate__animated {
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-duration: var(--animate-duration);
            animation-duration: var(--animate-duration);
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both
        }
        
        @-webkit-keyframes pulse {
            0% {
                -webkit-transform: scaleX(1);
                transform: scaleX(1)
            }
            50% {
                -webkit-transform: scale3d(1.2, 1.2, 1.2);
                transform: scale3d(1.2, 1.2, 1.2)
            }
            to {
                -webkit-transform: scaleX(1);
                transform: scaleX(1)
            }
        }
        
        @keyframes pulse {
            0% {
                -webkit-transform: scaleX(1);
                transform: scaleX(1)
            }
            50% {
                -webkit-transform: scale3d(1.2, 1.2, 1.2);
                transform: scale3d(1.2, 1.2, 1.2)
            }
            to {
                -webkit-transform: scaleX(1);
                transform: scaleX(1)
            }
        }
        
        .animate__pulse {
            -webkit-animation-name: pulse;
            animation-name: pulse;
            -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
            animation: pulse 1.5s infinite
        }
        
        svg {
            width: 100%
        }
        
        .st0 {
            fill: #FFFFFF;
        }
        
        .st1 {
            fill: #030405;
        }