<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body { padding: 0; margin: 0; overflow: hidden; }

#unity-container { position: absolute; width: 100%; height: 100%; }
#unity-fullscreen-button { float: right; width: 38px; height: 38px; background: url('fullscreen-button.png') no-repeat center }

#logo {
    width: 100%;
    height: 100%;
    background: url('logo.svg') no-repeat;
    background-position: center;
    background-size: 50%;
}

#fader {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #F0F0F0;
}

.fade-out {
    animation: fade-out 0.5s linear 0s 1 forwards;
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    99% {
        opacity: 0;
        height: 100%;
    }
    /* CSS Animations縺ｧ縺ｯdisplay: none縺ｧ縺阪↑縺��縺ｧ譛蠕後↓height繧�0縺ｫ縺励※髫�縺� */
    100% {
        opacity: 0;
        height: 0%;
    }
}
</pre></body></html>