/* The splash shown while the .NET runtime downloads */
.avalonia-splash {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #003158;
    color: white;
    font-family: sans-serif;
    justify-content: center;
    align-items: center;
    display: flex;
    pointer-events: none;
}

.avalonia-splash h2 {
    font-weight: 400;
    font-size: 1.5rem;
}

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