html, body, * {
    box-sizing: border-box;
}

* {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

body {
    margin: 0;
    background-color: #15151B;
    color: #ffffff;
    overflow: hidden;
}

#game_container {
    height: auto;
}

canvas {
    position: fixed;
}

/* Canvas styling */
#unity-canvas {
    width: 100%; /* Fill the width of the container */
    height: auto; /* Maintain aspect ratio */
}

.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background: url('Images/bg.webp') center;
    background-size: cover;
}

#unity-loading-bar {
    position: absolute;
    width: 60%;
    height: 60%;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    display: block;
}
.mask {
    mask-repeat: no-repeat;
    mask-size: 100%;
    mask-image: url("Images/loading_mask.webp"), radial-gradient(transparent 100%, black);
}
@media screen and (min-width: 600px) {
    #unity-loading-bar {
        position: absolute;
        width: 40%;
        height: 70%;
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
        /*display: none*/
    }

}

#unity-logo {
    width: 100%;
    height: 80%;
    background: url("Images/logo.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.unity-progress-bar-empty {
    width: 100%;
    height: 100%;
    background: url("Images/loading.webp") no-repeat ;
    background-size: 100%;
    justify-content: center;

}
@media screen and (min-width: 600px) {
    .unity-progress-bar-empty {
        width: auto;
        height: 100%;
    }
}
#unity-progress-bar-full {
    width: 100%;
    height: 5000px;
    margin-top: 10px;
    background: url("Images/loading_fill.webp") no-repeat ;
    background-size: 100%;
    margin-left: -50%;
}
