body {
    padding: 0;
    margin: 0;
    overflow: hidden; /* Add this to prevent scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

#unity-container {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    max-width: 650px;
}

canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    background: #000000; /* Optional: Set a background color for the canvas */
}

#unity-loading-bar {
    width: 90%;
    height: 10px;
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translate(-50%, -50%);
    /*display: none;*/
}

#logo {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 40%;
    background: url("logo.png") no-repeat;
    background-size: contain;
}

#version {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%, -50%);
}

#text_progress {
    position: absolute;
    left: 50%;
    bottom: 12%;
    transform: translate(-50%, -50%);
}

#unity-progress-bar-empty {
    width: 100%;
    height: 100%;
    margin-top: 10px;
    background: #000000;
}

#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    margin-top: 10px;
    background: #ffff00;
}
