html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: #000;
}

body {
    text-align: center;
    border: 0;
}

#unity-container {
    position: absolute;
    background: #000;
}

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

#unity-container.unity-mobile {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transform: none;
}

#unity-canvas {
    background: #231F20;
    display: block;
}

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

#unity-footer {
    position: relative;
    height: 38px;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.unity-mobile #unity-footer {
    position: fixed;
    right: 10px;
    bottom: 10px;
    height: 38px;
    background: transparent;
    z-index: 20;
}

#unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #ddd;
}

.unity-mobile #unity-build-title {
    display: none;
}

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

#unity-fullscreen-button:hover {
    opacity: 1;
}

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