
:root{
    --azul_escuro:#1f2937;
}
body{
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-image: url('../../../Assets/Utils/tableTexture.webp');
    background-size:cover;
    scrollbar-width: thin; /* Estilo da barra de rolagem em navegadores compatíveis */


}

body >*{
    user-select: none;
}

.div-centraliza{
    display: flex;
    align-items: center;
    justify-content: center;
}

.div-cobre-tela{
    display: none;
    width: 100%;
    height: 100%;
    background-color:rgba(31, 41, 55,.6);
    backdrop-filter: blur(8px);
    position: absolute;
    z-index: 2;
}

.container-cobre-tela{
    width: 100%;
    height: 80%;
    flex-direction: row;
}