.game
{
    width: 255px;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color:#000;
    margin:auto;
    font-weight: 500;

}

.title
{
    background-color: rgb(234, 163, 63);
    padding: 5px 0;
    margin: 5px 0;
}

span
{
    color: #fff;
}

.square
{
    width: 80px;
    height: 80px;
    background-color: rgb(234, 163, 63);
    float : left;
    margin: 2px;
    font-size: 50px;
    color: #fff;
}

.square:hover
{
    background-color: #000;
    cursor: pointer;
}