body {
    padding: 0;
    margin: 0
}

#unity-container {
    position: absolute;
}

    #unity-container.unity-desktop {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%)
    }

    #unity-container.unity-mobile {
        width: 100%;
        height: 100%
    }

#unity-canvas {
    background: #231F20
}

.unity-mobile #unity-canvas {
    width: 100%;
    height: 100%
}

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

#unity-logo {
    width: 0px;
    height: 0px;
    /*background: url('test.png') no-repeat center*/
}

#unity-progress-bar-empty {
    /*width: 100px;
    height: 100px;
    margin-top: 60px;
    margin-left: 6.5px;
    background: url('ballons.png') no-repeat center*/
}

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

#unity-footer {
    position: relative
}

.unity-mobile #unity-footer {
    display: none
}

#unity-webgl-logo {
    float: left;
    width: 204px;
    height: 38px;
    background: url('webgl-logo.png') no-repeat center
}

#unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: arial;
    font-size: 18px
}

#unity-fullscreen-button {
    float: right;
    width: 38px;
    height: 38px;
    background: url('fullscreen-button.png') no-repeat center
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none;
}

#pandacontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url('loadingBG.png') no-repeat center center; /* Set your background image */
    background-size: cover
}
/*#pandacontainer.active {
        background: url('loadingBG.png') no-repeat center center;*/ /* Change to new background */
/*background-size: cover;
    }*/

.header {
    background-image: url(allow.png);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    font-size: 150px;
    font-family: Arial, sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 15%;
    margin: 0;
}


/*.headerclass {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 15%;
    margin: 0;
}*/

.footersec {
    text-align: center;
    font-size: 16px;
    font-family: Arial, sans-serif;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 5px;
}

.footerImage {
    width: 60%;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.camera {
    width: 25%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.description {
    width: 70%;
    height: auto;
    display: block;
    margin-top: 50px;
    margin: 0;
}

#loadingBalloon {
    position: absolute;
    bottom: -600px;
    left: -125px;
    width: 250px; /* Adjust size as needed */
    height: 750px;
    animation-name: balloonMove;
    animation-duration: 6s; /* Reduced duration for faster looping */
    animation-timing-function: linear; /* Ensures smooth looping */
    animation-iteration-count: infinite;
}

@keyframes balloonMove {
    0% {
        transform: translateY(50%);
    }

    100% {
        transform: translateY(-130%);
    }
