html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'arial', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    color:white;

    position: relative;
    height: 100%;
    width: 100%;
}

.root {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;

    -webkit-transition: opacity 0.25s ease-in-out;
    -moz-transition: opacity 0.25s ease-in-out;
    -ms-transition: opacity 0.25s ease-in-out;
    -o-transition: opacity 0.25s ease-in-out;
    opacity: 0;
}

.loader {
    background-color: #252020;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 4vmin;
}

.needjs {
    top: 0;
    position: fixed;
    background-color: rgb(255, 0, 0);
    text-align: center;
    width: 100%;
    height: 8vmin;
    font-size: 3vmin;
}

.loading {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #FFF2;
    box-shadow: 32px 0 #FFF2, -32px 0 #FFF2;
    position: relative;
    animation: flash 1s linear infinite;
}

@keyframes flash {
    25% {
        background-color: #FFF2;
        box-shadow: 32px 0 #FFF2, -32px 0 #FFF;
    }
    50% {
        background-color: #FFF;
        box-shadow: 32px 0 #FFF2, -32px 0 #FFF;
    }
    75% {
        background-color: #FFF;
        box-shadow: 32px 0 #FFF, -32px 0 #FFF;
    }
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}