.loading-screen{
    position: fixed;
    inset: 0;
    background:#0a0a12;
    z-index: 99999;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:opacity .8s ease, visibility .8s ease;
}

.loading-screen.hidden{
    opacity:0;
    visibility:hidden;
}

.loader-logo{
    margin-bottom:25px;
}

.nurex-logo{
    width:120px;
    height:120px;
    filter: drop-shadow(0 0 25px rgba(0,240,255,.4));
}

.loading-text{
    font-family:'Syne',sans-serif;
    font-size:12px;
    letter-spacing:4px;
    color:#00f0ff;
    text-transform:uppercase;
}
