#root {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

#GameDiv{
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    border-radius: 0px!important;
    overflow: hidden !important;
    position: unset !important;
}

#splashLoader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loader {
    border: 8px solid #3498db; /* Azul */
    border-radius: 50%;
    border-top: 8px solid #f3f3f3; /* Color del fondo */
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite; /* Animación de giro */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wrapper{
    border: none;
}

.footer, .toolbar, .footer {
    display: none !important;
}

* { margin:0; padding:0; } /* to remove the top and left whitespace */

html, body { width:100%; height:100%; } /* just to be sure these are full screen*/


