* {
    font-family: Inter, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu;
}

#loading {
    position: absolute;
    inset: 0;
    background-color: #0D0D12;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
    transition: background-color 0.3s linear;
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#loading>img {
    width: 156px;
    height: 156px;
    transition: opacity 0.3s linear;
}

#loading>span {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.4px;
    text-align: center;
}

#loading.hidden {
    background-color: transparent;
    pointer-events: none;
}

#loading.hidden>img {
    opacity: 0;
}