@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fill {
    to {
        fill-opacity: 1;
    }
}

@keyframes breath {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

#unap-loader-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(8px);
    z-index: 9000;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

body.loaded #unap-loader-background {
    opacity: 0;
    pointer-events: none;
}

#unap-logo-container {
    position: absolute;
    width: 15rem;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9001;
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

body.loading #unap-logo-container {
    display: block;
    overflow: hidden;
}

body.loaded #unap-logo-container {
    opacity: 0;
    transform: translate(-50%, -60%);
}