html {
    overflow: hidden;
}
body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    background: linear-gradient(0deg, #1f1f1f 0%, #2f2d2a 100%);
    margin: 0;
    color: #fff;
    padding-top: 40px;
}
header {
    width: 100%;
    height: 60px;
    position: absolute;
    display: flex;
    top: 0;
    background-color: #1f1f1f;
	z-index: 1
}
header svg {
    width: 206px;
    margin: auto;
    padding: 16px;
}
#unity-container * {
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
}
#unity-container {
    position: absolute;
    width: 90% !important;
    padding: 10% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (min-width: 900px) {
    #unity-container {
        width: 55% !important;
        padding: 10%;
    }
}
#unity-canvas {
    background-color: #212021;
	aspect-ratio: 1024  / 768 !important;	
}
#unity-loading-bar { 
    height: 18px;
    width: 141px;
    position: absolute;
    margin-bottom: 60px;
    display: none;
}
.unity-mobile #unity-loading-bar {
    margin-top: -60px;
}
#unity-logo { 
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url('unity-logo-dark.png') no-repeat center / contain;
    width: 154px;
    height: 130px;
}
#unity-progress-bar-empty { 
    background: url('progress-bar-empty-dark.png') no-repeat right / cover;
    float: right;
    width: 100%;
    height: 100%;
    display: inline-block;
    margin-top: 90px;
} 
#unity-progress-bar-full {
    background: url('progress-bar-full-dark.png') no-repeat left / cover;
    float: left;
    width: 0%;
    height: 100%;
    display: inline-block;
} 
#unity-footer {
    background-color: #212021;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
}
#unity-footer button.fullscreen {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    padding: 8px 12px;
    -webkit-transition: all 200ms;
    transition: all 200ms;
    cursor: pointer;
    width: auto;
}
#unity-footer button.fullscreen:hover {
    color: #212021;
    background-color: #fff;
}
.unity-mobile #unity-footer {
    background-color: transparent;
    padding: 30px 0;
}
.unity-mobile #unity-footer button.fullscreen {
    font-size: 18px;
    background-color: #212021;
    border-radius: 15px;
    border: none;
    color: #fff;
}
#unity-warning { 
    padding: 10px;
    display: none;
    text-align: center;
    font-size: 18px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 600px;
}
#unity-warning img {
    width: 100px;
}
#unity-warning span {
    color: #ffd431;
}
.app-store,
.play-store {
    display: none;
}
#unity-warning svg {
    width: 200px;
}
footer {
    width: 100%;
    height: 30px;
    background-color: #000;
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 10px;
    bottom: 0;
}
footer a {
    color: #ffd431;
    text-decoration: none;
    margin-left: 4px;
  }
