html,body {
    width: 100%;
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    padding-bottom: env(safe-area-inset-bottom);
    background-color: black;
    overflow: hidden;
}


#unity-container {
    position: relative;
}

#unity-container.unity-desktop {
    /*left: 50%;*/
    /*top: 50%;*/
    /*transform: translate(-50%, -50%)*/
    left: 15%;
    top: 10%;
    width: 70%;
    height: 80%
}

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

#unity-canvas {
    position: absolute;
    background: #231F20;
    width: 100%;
    height: 100%;
}

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

#unity-footer {
    position: relative;
    top: -42px;
}

.unity-mobile #unity-footer {
    display: none;
}

#unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: arial;
    font-size: 18px
}


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

.borderRadius{
    border-radius: 10px;
}
