:root {
    /* DEFINIENDO VARIABLES */
    --blanco: #ffffff;
    --negro: #141414;
    --azul: blue;
    --margenesnormales: 10px;
}

* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* body {
    background-image: url(imagenes/fondo.avif);
    background-repeat: no-repeat;
    background-size: cover;
}
 */
nav h1,
nav a {
    background-color: var(--blanco);
    text-decoration: none;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#numeros {
    text-align: center;
    width: 100%;
}

#tablanumeros {
    border-style: double;
    border: 2px solid var(--azul);
    background-color: var(--blanco);
}

#tablanumeros td {
    border: 1px solid var(--negro);
    width: 50px;
    height: 50px;
}

#bola {
    text-align: center;
}

#muestrabola {
    font-size: 10em;
    background-color: gray;
    color: var(--blanco);
    border-radius: 50%;
    border: 3px solid var(--blanco);
    width: 50%;
    text-align: center;
    margin: auto;
    margin-top: 150px;
    margin-bottom: var(--margenesnormales);
}

#botonbola {
    border: 3px solid var(--negro);
    font-size: 2.5em;
    font-weight: bold;
}