<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
body {
    overflow: hidden;
}
@keyframes page-load {
    from {
        background-color: #ffc422;
    }

    to {
        background-color: #c0392b;
    }
}

.page-loading::before {
    content: " ";
    display: block;
    position: fixed;
    z-index: 999999999;
    height: 2px;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #06D;
    animation: page-load infinite ease-out 2s;
    box-shadow: 0 2px 2px rgba(0,0,0,.2);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999999;
    background-image: url('../img/favicon.png'); /* your icon gif file path */
    background-repeat: no-repeat;
    background-color: #FFF;
    background-position: center;
}
</pre></body></html>