﻿

body {
    padding: 0;
    margin: 0
}

html {
    overflow: hidden
}
/*.container{*/
/*    text-align: center;*/
/*    top: 50%;*/
/*    left:50%;*/
/*}*/
/*.container span{*/
/*    color: Red;*/
/*    text-transform: uppercase;*/
/*}*/
.BackgroundImage {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.link{
    height: auto;
    width: auto;
}

.Arrow {
    position: absolute;
    bottom: 50px;
    right: 80px;
    z-index: 11;
    height: 60px;
    transform: rotate(-50deg) scale(-1,1);
}

.JoinDiscordText {
    color: Red;
    top: 81%;
    left: 90%;
    font-size: 25px;
    text-align: center;
    text-transform: uppercase;
    z-index: 20;
    position: absolute;
    width: 70px;
    animation: loopSize 1s linear infinite alternate;
}

.LoadingContainer {
    position: absolute;
    color: white;
    font-size: 40px;
    top: 40%;
    left: 40%;
    z-index: 11;
}

.LoadingText {
    position: absolute;
    color: white;
    font-weight:bold;
    font-size: 60px;
    top: 40%;
    left: 36%;
    z-index: 11;
}

.ProgressText {
    position: absolute;
    color: white;
    font-weight:bold;
    font-size: 60px;
    top: 40%;
    left: 54%;
    z-index: 11;
}

.LoadingText::after {
    content: "Loading";
    animation: loadingDots 1.5s linear infinite;
}

.LoadTimeText {
    visibility: hidden;
    position: absolute;
    color: white;
    font-size: 30px;
    z-index: 11;
    top: 50%;
    left: 33%;
    text-align: center;
    width: 500px;
}

@keyframes loopSize {
    from {
        font-size: 25px;
        width: 100px;
    }

    to {
        font-size: 20px;
        width: 80px;
    }
}

@keyframes loadingDots {
    0% {
        content: "Loading.";
    }

    50% {
        content: "Loading..";
    }

    60% {
        content: "Loading...";
    }
}

#unity-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

    #unity-container.unity-desktop {
        position: absolute;
    }

    #unity-container.unity-mobile {
        width: 100%;
        height: 100%
    }

#unity-canvas {
    background: #231F20;
    position: relative;
    width: 100%;
    height: 100%;
}

.unity-mobile #unity-canvas {
    width: 100%;
    height: 100%
}




