*{
    margin: 0;
}

.game{
    width: 50%;
    text-align: center;
    font-family: system-ui;
    color: white;
    margin: auto;
    font-size: 200%;
    font-weight: 500;
}
.title{
    background: #f25;
    padding: 5px e;
    margin: 5px 0;
}
#c{
    display: grid;
    grid-template-columns: auto auto auto;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
}
span{
    color: rgb(255, 251, 0);
}
.square{
    width: 80px;
    height: 80px;
    background: #f25;
    /* float: left; */
    margin: 2px;
    font-size: 50px;
}
.square:hover{
    background-color: black;
    cursor: pointer;
}









footer{
   
    display: grid;
    background-color: black;
    grid-template-columns: calc(100%/3) calc(100%/3) calc(100%/3);
    justify-items: center;
    align-items: center;
    color: antiquewhite;
}

footer div ul li{
    margin: 8px;
}

footer div ul a :hover{
    color: goldenrod;
}
