@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    background-color: #ff9200;
    font-family: 'Nunito', sans-serif;
    height: 0%;
    width: 100%;
    padding: 0;
    margin: 0;
}
p,ol,li {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
}
a {
    color: white;
}

h1 {
    text-align: center;
    color: white;
    font-size: 50px;
    font-family: 'Nunito', sans-serif;
}

div#tablero {
    width: 310px;
    height: 310px;
    padding: 0px;
    border: 7px solid #999;
    background-color: white;
    margin: 20px auto;
    cursor: pointer;
}

div#tablero div {
    width: 100px;
    height: 100px;
    float: left;
    margin: 0px;
    font-size: 90px;
    text-align: center;
}

div#celda1, div#celda2, div#celda3, div#celda4, div#celda5, div#celda6 {
    border-bottom: 5px solid black;
}

div#celda1, div#celda2, div#celda4, div#celda5, div#celda7, div#celda8 {
    border-right: 5px solid black;
}

div#tablero > div:hover {
    background-color: #ddd;
}

div#consola {
    width: 310px;
    height: 60px;
    padding: 7px;
    border: 5px solid #999;
    background-color: white;
    margin: 10px auto;
    text-align: center;
    color: darkgreen;
    margin-bottom: 50px;
}

#msg, #cta {
    color: white;
    background-color: #1c375e;
    text-align: center;
    padding: 50px;
}
#msg ol {
    max-width: 700px;
    margin: auto;
    text-align: left;
}
#msg li {
    margin-bottom: 15px;
}
#cta {
    background-color: #202529;
}