*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: monospace;
    text-align: center;
}
h1{
    letter-spacing: 2px;
    background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
    padding: 8px;
    color: rgb(178, 6, 178);
    font-size: 28px;
}

p{
    font-size: 18px;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    letter-spacing: 1px;
}
span{
    color: purple;
    font-size: 29px;
}

hr {
    width: 500px;
    margin: auto;
}

.contenedor-total{
    width: 90%;
    margin: auto;
    max-width: 1200px;
    flex-wrap: wrap;
}


.errores {
    color: rgb(244, 3, 3);
    margin: 5px;
    letter-spacing: 2px;
    font-size: 30px;
}

/*------------------------------------------------------------------------JS---------------------*/
.tablero {
    width: 433px;
    height: 434px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    background-color: rgb(232, 203, 221);
}

.ficha {
    width: 48px; 
    height: 48px;
    border: 1px solid rgb(254, 250, 250);
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.digitos {
    width: 450px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    cursor: pointer;
 /*   background-color: yellow;*/
}

.numero {
    width: 44px; 
    height: 44px;
    border: 1px solid black;
    margin: 2px;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.selectNumero {
    background-image: linear-gradient(to top, #5f72bd 0%, #9b23ea 100%);
}

.ficha-start {
    background-image: linear-gradient(to top, #daa6f9 0%, #f8a8dd 100%);
}

.horizontal-line {
    border-bottom: 1px solid black;  
}

.vertical-line {
    border-right: 1px solid black;
}