html, body {
    font-family: 'PT Sans', sans-serif;
    padding: 0;
    margin: 0;
    background-color: #b2d9fa !important;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

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

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

#unity-loading-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #2C6774;
    background-size: cover;
    background-position: center;
}

#unity-loading-bar {
    display: none;
    width: 200px;
    height: 22px;
    border-radius: 20px;
    color: #ffffff;
    border: 3px solid;
    left: 50%;
    top: 50%;
    position: absolute;
    --progress-reversed: 100%;
    transform: translate(-50%, -50%);
}

#unity-loading-bar::before {
    content: "";
    position: absolute;
    margin: 3px;
    border-radius: inherit;
    background: currentColor;
    inset: 0 var(--progress-reversed) 0 0;
}

#unity-loading-title {
    font-family: 'PT Sans', Arial, sans-serif;
    font-size: 16pt;
    text-align: center;
    width: 100%;
    top: -28pt;
    position: absolute;
}

#unity-download-speed-subtitle {
    font-family: 'PT Sans', Arial, sans-serif;
    font-size: 14pt;
    text-align: center;
    width: 100%;
    top: 30pt;
    position: absolute;
}

#unity-error-message {
    display: none;
    flex-direction: column;
    font-family: 'PT Sans', Arial, sans-serif;
    color: white;
    font-size: 16pt;
    text-align: center;
    position: absolute;
    padding-left: 20px;
    padding-right: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    justify-content: center;
    align-items: center;
}

#unity-play-button {
    display: none;
    position: absolute;
    cursor: pointer;
    width: 150px;
    height: 150px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url("../images/play_button.png");
    background-size: 100% 100%;
    background-color: transparent;
}

#unity-cover {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #005B7A;
    opacity: 0.3;
}
