* {
    -moz-user-select: none !important;
    -khtml-user-select: none !important;
    -webkit-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    overflow: hidden !important;
}
body {
    margin: 0 !important;
    
    background: linear-gradient(16deg, #85e3ff, #d4d4d4, #ffffff);
    background-size: 600% 600%;

    -webkit-animation: AnimationName 12s ease infinite;
    -moz-animation: AnimationName 12s ease infinite;
    animation: AnimationName 12s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 56%}
    50%{background-position:100% 45%}
    100%{background-position:0% 56%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 56%}
    50%{background-position:100% 45%}
    100%{background-position:0% 56%}
}
@keyframes AnimationName {
    0%{background-position:0% 56%}
    50%{background-position:100% 45%}
    100%{background-position:0% 56%}
}

body::before {
    content: "";
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    background-image: url(girl.png);
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
}

#unity-canvas {
    border-radius: 10px;
}

canvas {
  -webkit-touch-callout: none; 
    -webkit-user-select: none; 
     -khtml-user-select: none; 
       -moz-user-select: none; 
        -ms-user-select: none; 
            user-select: none;                     
}   

#unity-progress-bar-empty {
    width: 20%;
}

#unity-logo img {
    max-width: 50%;
    max-height: 50%;
    border-radius: 15px;
}





