.loadingScreen{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,var(--background-white),var(--background-accent),var(--background-white));
    z-index: 9999;
    display: flex;
}

.loadingScreenMiddle{
    margin: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
   
}

.loadingScreenMiddle img{
    width: 200px;
    height: 200px;
    margin: auto;
}

.noScriptText{
    font-size: 1.8em;
    font-weight: bold;
    color: var(--titles-white);
    text-align: center;
    margin: auto;
}

.loadingScreenText{
    font-size: 1.5em;
    font-weight: bold;
    color: var(--titles-white);
    text-align: center;
}

.noScriptDesc{
    font-size: 1.2em;
    color: var(--titles-white);
    text-align: center;
    margin: auto;
}