@font-face {
    font-family: "GT-Eesti-Pro-Text";
    src: url("/GT-Eesti-Pro-Text-Regular.otf");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "GT-Eesti-Pro-Text";
    src: url("/GT-Eesti-Pro-Text-Light.otf");
    font-weight: 200;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
}

#splash {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: white;
    z-index: 3000;

    font-family: GT-Eesti-Pro-Text, sans-serif;

    gap: 20px;
}

#splash .logo {
    margin-bottom: 4px;
}

#splash .logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

#splash h1 {
    margin: 0;
    font-weight: 200;
    font-size: 22px;
}

#splash .loader {
    width: 220px;
    height: 2px;
    background-color: #eee;
    overflow: hidden;
    position: relative;
    border-radius: 1px;
}

@keyframes splash-loading {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}

#splash .loader::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    bottom: 0;
    background-color: #662ebe;
    animation: splash-loading 2s infinite;
}

#splash .subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 200;
}

#loader-text {
    font-size: 18px;
    font-weight: 400;
}
