@font-face {
    font-family: 'fuentechina';
    src: url('fuente.ttf') format('truetype'),
        /* Safari, Android, iOS */
}


body {
    background-image: url(fondo.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

header form {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    margin-bottom: 10px;
    align-items: center;
    justify-items: center;
}



header h1 {
    margin: 0px;
    padding: 0px;
}

#tablero {
    font-family: "fuentechina";
    font-size: 6em;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 10px;
    text-align: center;
}

#tablero>div {
    background-color: rgba(15, 14, 14, 0.337);
    /* color: transparent; */
    color: white;
    padding: 5px;
    border-radius: 6px;
    cursor: pointer;
}

#reloj {
    font-size: 4em;
    font-family: 'Courier New', Courier, monospace;
    color: navajowhite;
    text-shadow: 1px 1px 2px black;
    background-color: rgba(165, 42, 42, 0.247);
    border-radius: 8px;
}

.botones {
    background-color: rgba(0, 0, 255, 0.664);
    color: aliceblue;
    border: none;
    font-size: 2em;
    border-radius: 3px;
}

a.botones {
    background-color: rgba(0, 0, 255, 0.664);
    color: aliceblue;
    border: none;
    font-size: 2em;
    border-radius: 3px;
    text-decoration: none;
    font-size: 1em;
    padding: 10px;
}

header input {
    font-size: 1.5em;
    padding: 8px;
    background-color: rgba(165, 42, 42, 0.247);
    border: none;
    border-bottom: 1px solid rgba(165, 42, 42);
}

#enviar {
    display: none;
}

#listado {
    border-radius: 15px;
    background-color: rgba(165, 42, 42, 0.616);
    padding: 20px;
    width: 80%;
    margin: auto;
    margin-top: 25px;
}

#listado ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}


#listado ul li {
    font-family: 'Courier New', Courier, monospace;
    color: navajowhite;
    text-shadow: 1px 1px 2px black;
    font-size: 2em;
    line-height: 60px;
    border-bottom: 1px double black;
    text-align: center;
}