<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.loading-screen {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    top: 250px;
}

.logo {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
}

.spinner {
    width: 100px;
    height: 100px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
</pre></body></html>