#unity-loading-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    text-align: center; /* Centers the text within the container */
}

#unity-loading-text {
    color: #FFFFFF; /* Change the color as needed */
    margin-bottom: 50px; /* Spacing between the text and the loading bar */
    font-size: 16px; /* Adjust the font size as needed */
    font-family: 'Roboto', sans-serif; /* Specify Roboto as the font family */
    font-weight: 700; /* 700 is the weight for bold */
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block
}

#unity-progress-bar-empty {
    width: 141px;
    height: 18px;
    margin-top: 10px;
    margin-left: 6.5px;
    background: url('progress-bar-empty-dark.png') no-repeat center
}

#unity-progress-bar-full {
    width: 0%;
    height: 18px;
    margin-top: 10px;
    background: url('progress-bar-full-dark.png') no-repeat center
}

body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    /*Change this to change player background color*/
    background: #000;
}

canvas {
    width: 100%;
    height: 100%;
    display: block;
}

