    @import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300&display=swap');
    body {
        margin: 0;
        overflow: hidden;
    }
    #loader {
        z-index: 999;
        min-height: 100%;
        width: 100%;
        background-color: #0c0f13;
        position: fixed;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 500ms ease-out;
    }
    .Llogo {
        background: url(/a/logo.svg) 100% no-repeat;
        animation: Llogoload 500ms ease-out 0ms 1, loaderlogo 1000ms ease-out 0ms infinite;
        height: 10em;
        width: 16em;
        margin: 0em 0em 0.1em 0em;
    }
    .wiptxt {
        position: absolute;
        color: #dfdfdf;
        font-family: 'Fredoka', sans-serif;;
        padding: 4em 8em 0em 0em;
        text-align: left;
        user-select: none;
    }
    @keyframes Llogoload {
        0% {
            opacity: 0;
        }100% {
        }
    }
    @keyframes loaderlogo {
        0% {
            filter: contrast(100%);
        }50% {
            filter: contrast(50%);
        }100% {
            filter: contrast(100%);
        }
    }
