body {
    
    overflow: visible !important ;
    display: flex;
    flex-direction: column;
    margin: 0;
    background-image: url('/static/img/ganadoresBackground.png');
    zoom: 0.67 !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-size: cover;
    
    background-repeat: no-repeat;
    background-attachment: fixed;
   
    
    height: 100% !important;
    margin: 0;
    padding: 0;
}

p {
    line-height: 1.2; /* Ajusta el valor según tus preferencias */
    text-align: justify;
}

.instrucciones{
    display: flex;
    margin-bottom: 5rem;
}

.imagenesLogos {
    display: flex; /* Utilizar Flexbox */
    justify-content: center; /* Centrar los elementos horizontalmente */
    margin-top: 9rem;
}

/* Estilos para cada elemento dentro del contenedor */
.elemento {
    margin-right: 40px; /* Espacio entre los elementos */
}

/* Eliminar el margen derecho del último elemento para evitar espacio adicional */
.elemento:last-child {
    margin-right: 0;
}



.info{
    margin: 80 380 0 300;
    text-align: justify;
    font-size: xx-large;
    /*font-family: Arial, Helvetica, sans-serif;*/
    /*font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;*/
    font-family: 'Agbalumo', cursive;
    
    
    color: aliceblue;
    text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.5);
    
}   


.linea-divisoria {
    border-bottom: 1px solid #838181; /* Línea divisoria negra */
    margin-bottom: 20px; /* Espacio entre el título y la línea */
}

.tituloSeccion{
    font-size: 40pt;
    text-align: center;
    font-family: 'Agbalumo', cursive;
    
}

@media (max-width: 850px) {
    .body{
        overflow-x: hidden !important;
    }
    .row{
        justify-content: center !important;
    }
    .info{
        margin: 150 10 0 10 !important; 
    }
}
@media (max-width: 1300px) {
    .row{
        justify-content: center !important;
    }
    .body{
        overflow-x: hidden !important;
    }
    .info{
        margin: 150 50 0 50 !important; 
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100vh);
    }
    100% {
        transform: translateY(100vh);
    }
}


.container {
    width: 100%;
    display: block;
    
}
.categorias {
    display: flex; 
    width: 100%;
    
}

.row{
    justify-content: space-between;
}

/* Estilo para la tabla */
table {
    font-family: Arial, sans-serif; /* Establece la fuente a Arial */
    font-size: 20pt; /* Establece el tamaño de la fuente a 14 puntos */
    border-collapse: collapse; /* Combina los bordes de las celdas para esquinas más suaves */
    border-color: transparent;
}

/* Estilo para las celdas de la tabla (opcional) */
td, th {
    border: 1px solid #ddd; /* Borde de celda */
    padding: 8px; /* Relleno interno de la celda */
}

/* Esquinas redondeadas en la esquina superior izquierda y superior derecha */
table th:first-child {
    border-top-left-radius: 10px;
}

table th:last-child {
    border-top-right-radius: 10px;
}


