﻿.avalonia-splash {
    position: absolute;
    height: 100%;
    width: 100%;
    background: white;
    font-family: 'Outfit', sans-serif;
    justify-content: center;
    align-items: center;
    display: flex;
    pointer-events: none;
}

.avalonia-splash-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.avalonia-splash-content h1 {
    margin: 0;
    font-size: 2.5rem;
}

.avalonia-splash-content h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: normal;
}

.avalonia-splash {
    background: #22272e;
}

.avalonia-splash h1 {
    color: white;
    font-weight: 400;
    font-size: 3.5rem;
}

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

.avalonia-splash h3 {
    color: lightgray;
}

.avalonia-splash a {
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    display: block;
}

.avalonia-splash img {
    margin-top: 20px;
}

.avalonia-splash.splash-close {
    transition: opacity 200ms, display 200ms;
    display: none;
    opacity: 0;
}
/* Splash - Progress Bar */

.progress-bar {
    width: 100%;
    height: 5px;
    background-color: transparent;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress {
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, #5ecdf9, #f3a8b6, white);
    border-radius: 5px;
    animation: loading 2s infinite;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(350%);
    }
}

/* Splash - Powered By */
.powered-by {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: #555;
    opacity: 0.7;
}