body {
    padding: 0;
    margin: 0;
    overflow: hidden;

}

.no-highlight {
    outline: none;
    border: none; /* Optional, if you don't want a border */
}

.no-highlight:focus {
    outline: none;
}

#unity-container {
    position: absolute
}

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

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

#unity-canvas {
    background: black;
}

#bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    filter: blur(8px);
    background: url('Background.png') center;
    background-size: cover;
}

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

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

@media screen and (min-width: 1000px) {
    #unity-loading-bar {
        position: absolute;
        width: 40%;
        height: 40%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: none
    }
}


#unity-logo {
    width: 100%;
    height: 70%;
    background: url(Logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

#unity-progress-bar-empty {
    width: 100%;
    height: 7px;
    margin-top: 12%;
    margin-left: 6.5px;
    background: white;
    border-radius: 100px;
}

@media screen and (min-width: 1000px) {
    #unity-progress-bar-empty {
        width: 100%;
        height: 13px;
        margin-top: 12%;
        margin-left: 6.5px;
        background: white;
        border-radius: 100px;
    }
}

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

#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 {
    cursor: pointer;
    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
}

#rotate-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    background-color: black;
    background: url("RotatePhone.png") no-repeat center;
    background-size: 20%;
    animation: rotateAnimation 1s linear infinite;
}

#rotate-phone {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    display: none;
}

@keyframes rotateAnimation {
    from {
        transform: rotate(45deg);
    }
    to {
        transform: rotate(0deg);
    }
}
