html,
body {
    /*background: #000;*/
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

img {
    object-fit: contain;
}

.wrapper {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background-color: #ffffff;
}

#unity-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#unity-loading-wrap {
    position: absolute;
    display: flex;
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    overflow: hidden;
    left: 0;
    bottom: 24px;
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
}

#unity-loading-wrap #unity-loading-text {
    display: flex;
    color: #000;
    width: 100%;
    height: 50%;
    font-size: 17px;
    font-family: JalnanOTF;
    justify-content: center;
    align-items: center;
}

#unity-loading-progress-bar {
    display: flex;
    position: relative;
    width: 80%;
    height: 50%;
    bottom: 0;
    left: 0;
    background-color: #fff;
    border-radius: 16px;
}

#unity-loading-progress-bar > span {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    color: rgb(48, 48, 48);
    font-family: JalnanOTF;
    z-index: 1;
    position: relative;
    left: calc(var(--progress) * 100% + 1%);

    /* text-shadow: gray 0px 0px 15px, black 0px 0px 5px, gray 0px 0px 3px; */
}

#unity-loading-progress-bar::after {
    content: '';
    position: absolute;
    width: calc(100% * var(--progress));
    height: 100%;
    /* transition: right .05s;
    background: linear-gradient(to right, rgba(53, 46, 232, 1) 0, rgba(147, 206, 222, 1) 72%, rgba(53, 46, 232, 1) 89%); */
    background-color: #f9e001;
    background-size: 200% 100%;
    border-radius: 16px;
    /* animation: progressAnim 2s linear infinite; */
}

@keyframes progressAnim {
    from {
        background-position-x: 191%;
    }

    to {
        background-position-x: 0%;
    }
}

.webgl-content { display: flex; width: 100%; height: 100%; justify-content: center; align-items: center;}
.webgl-content * {border: 0; margin: 0; padding: 0; width: 100%; height: 100%}
.logo-video {border: 0; margin: 0; padding: 0; width: 63%; height:auto;}
