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

#unity-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
}

#unity-canvas {
    background: url('../images/ninja-cover.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: inherit;
    width: 100%;
    height: 100%;
}

#ohayo-logo {
    position: absolute;
    left: 10px;
    bottom: 10px;
    width: 7.5vh;
    height: 7.5vh;
    visibility: hidden;
    background: url('../images/logo-stroke.png') no-repeat center;
    background-size: contain;
}

#ohayo-unity-logo {
    position: absolute;
    left: 50%;
    top: 40%;
    width: 25%;
    height: 25%;
    opacity: 0;
    background: url('../images/logo.png') no-repeat center;
    background-size: contain;
    transform: translate(-50%, -50%);
}

#unity-logo {
    position: relative;
    transform: translateX(14%) translateY(-20%);
    width: 141px;
    height: 141px;
    scale: 1.5;
    background: url('../images/logo.png') no-repeat center;
}

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

#unity-progress-bar-empty {
    width: 200px;
    height: 18px;
    margin-top: 10px;
    background: url('../images/progress-bar-empty-dark.png') no-repeat center;
}

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