/* HTML styles for the splash screen shown while the WASM runtime downloads. */
.avalonia-splash {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #1e1e1e;
    color: #d4d4d4;
    font-family: 'Segoe UI', system-ui, sans-serif;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    pointer-events: none;
    text-align: center;
}

.avalonia-splash h2 {
    font-weight: 400;
    font-size: 1.6rem;
    margin: 0 0 0.5rem 0;
}

.avalonia-splash p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
    max-width: 32rem;
}

.avalonia-splash.splash-close {
    transition: opacity 200ms, display 200ms;
    display: none;
    opacity: 0;
}
