#loadingScreen{
    position: fixed;
    z-index: 10000;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: left 1s ease, right 1s ease, bottom 1s ease,top 1s ease;
    box-sizing: border-box;
}

#loadingScreenText{
    font-family: initial;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 12pt;
    font-size: 14pt;
}