.game{
    width: 255px;
    height: 400px;
    margin: auto;
    text-align: center;
    font-family: system-ui;
    color: white;
    font-weight: 500;
}

.title{
    background: #f25;
    padding: 5px 0;
    margin: 5px 0;
}
.span{
    color: #fa0;
}

.square{
    width: 80px;
    height: 80px;
    background: darkorange;
    margin: 2px;
    font-size: 50px;
    font-family: sans-serif; 
    text-align: center;
    color: white;
    float: left;
}

.square:hover{
    background: #000;
    cursor: pointer;
}