*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body {
    background: #f0f0f0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(to right, #1c1c1c);
}
h1 {
    text-align: center;
    margin-bottom: 100px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.tablero    {
    width: 400px;
    height: 400px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    background-color: rgb(234, 238, 237);
    border: dotted thin black
}
  .figura1:hover {
    background-color: rgb(1, 14, 27);
    color: rgb(67, 238, 15);
  }

  .figura2:hover {
    background-color: rgb(1, 14, 27);
    color: rgb(15, 19, 238);
  }

.tablero * {
    text-align: center;
    font-size: 40px;
    transition: 0.2s ease-in-out;
    cursor: pointer;
    border: black solid thin;
    
}


