html,
body {
    height: 100%;
    margin: 0;
}

.bg-blur {
    scale: 1.1;
    
    background-size: cover;
    background-position: center;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken;
    inset: 0;
    z-index: -1;
    filter: blur(4px);
    -webkit-filter: blur(4px);
}

.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.no-drag-img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

#splash {
    position: fixed;
    inset: 0;
    background-color: #0C0426;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1s ease;
}

.logo {
    font-size: 2.5rem;
    color: #fff;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInZoom 1.5s ease forwards;
}

@keyframes fadeInZoom {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.typing-text {
    color: #f27022;
    font-size: 1.1rem;
    margin-top: 1rem;
    width: 18ch;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #f27022;
    animation: typing 2.5s steps(18), blink 0.7s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 18ch
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}