body {
    padding: 0;
    margin: 0;
    background: #3D4F73;
}

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

#unity-canvas {
    width: 100%;
    height: 100%;
    /* background: #231F20 */
    background: #3D4F73;
}

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

#logo{
    width: 80vw;
    height: 80vw;
    background: url('icon.webp') no-repeat center;
    background-size: contain;
}

#logo-container
{
    background-color: #3D4F73;
    border-radius: 50%;
    transition: all 0.5s;
}

.blink 
{
    animation: fade 2s infinite alternate;
}
@keyframes fade {
    from { opacity: 1; } to { opacity: 0.5; }
}

.fadout
{
    opacity: 0;
}

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