@font-face {
    font-family: 'silka';
    src: url('/public/fonts/silka-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    background-image: radial-gradient(#c3dca6 1.25px, #d8eac2 1.25px);
    background-size: 25px 25px;

    /* Animación para mover el fondo */
    animation: moverFondo 60s linear infinite;
    width: 100%;
    height: 100vh;
    font-family: 'silka';
    overflow: hidden;
    scrollbar-width: thin;
    font-family: system-ui, sans-serif;
    font-weight: normal;

    display: flex;
    flex-direction: column;
}

/* Se desactiva visualmente la barra de scroll */
/* Para navegadores basados en WebKit, como Chrome y Safari */
body::-webkit-scrollbar {
    width: thin;
}

/* Oculta visualmente la barra de desplazamiento */
body {
    scrollbar-width: none;
}

/* Para navegadores basados en WebKit, como Chrome y Safari */
body::-webkit-scrollbar {
    display: none;
}

@keyframes moverFondo {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 100%;
    }
}

.notLivescoring {
    background-color: #ffffff7a;
    backdrop-filter: blur(1px);
    padding: 1em;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    color: #296cbd;
}

.notLivescoring > div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notLivescoring h1 {
    margin: auto;
}

.notLivescoring .logoNXT {
    margin: auto;
}

@media (min-width: 968px) {
    .notLivescoring {
        flex-direction: row;
    }

    .notLivescoring > div {
        width: 50%;
    }
}

.full-height {
    height: 100%;
}
