body {
    padding: 0;
    margin: 0
}

#unity-container {
    position: fixed;
    width: 100%;
    height: 100%;
}

#unity-canvas {
    width: 100%;
    height: 100%;
    background: #231F20
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#unity-logo {
    width: 336px;
    /*height: 263px;*/
    /*background: url('unity-logo-dark.png') no-repeat center*/

}

#unity-progress-bar-empty {
    /*margin-left: 10%;*/
    /*margin-right: 10%;*/
    /*!*width: 141px;*!*/
    /*height: 8px;*/
    /*margin-top: 10px;*/
    /*background: url('progress-bar-empty-dark.png') no-repeat center*/

    width: 400px;
    height: 5px;
    margin-top: 100px;
    background: #555454;
}

#unity-progress-bar-full {
    /*width: 0%;*/
    /*height: 8px;*/
    /*margin-top: 10px;*/
    /*background: url('progress-bar-full-dark.png') no-repeat center*/

    width: 0%;
    height: 5px;
    background: linear-gradient(100deg, #fe5ff4, #00fec7);
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none
}



@media (max-width: 600px) {


    h1 {
        font-size: 1.5em;
    }

    #unity-logo {
        width: 168px;
    }

    #unity-progress-bar-empty {
        width: 210px;
        margin-top: 60px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {


    h1 {
        font-size: 2em;
    }

    #unity-logo {
        width: 250px;
    }

    #unity-progress-bar-empty {
        width: 290px;
        margin-top: 80px;
    }
}

@media (min-width: 1025px) {


    h1 {
        font-size: 2.5em;
    }
}